*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0b0f19;
  color: #f8fafc;
  display: block;
  padding-top: 80px;
  min-height: 100vh;
}

.container {
  max-width: 650px;
  padding: 30px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 80px;
  background-color: #111827;
  border-bottom: 1px solid #1f2937;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
  margin-right: 16px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f8fafc;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #38bdf8;
}

.nav-links a.active {
  border-bottom: 2px solid #38bdf8;
  padding-bottom: 4px;
}

.status-badge {
  display: inline-block;
  background-color: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  font-size: 1.2rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
}

.btn-primary {
  display: inline-block;
  background-color: #38bdf8;
  color: #0b0f19;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #0ea5e9;
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #374151;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: #9ca3af;
  background-color: rgba(255, 255, 255, 0.05);
}

.section-container {
  max-width: 1000px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
  text-align: center;
}

.section-title, h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 24px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: #111827;
  border: 1px solid #1f2937;
  padding: 24px;
  border-radius: 8px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: #38bdf8;
  transform: translateY(-2px);
}

.card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #38bdf8;
  margin-bottom: 8px;
}

.card-value {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
}

.site-footer {
  background-color: #070a12;
  border-top: 1px solid #1f2937;
  padding: 60px 20px 20px 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: left;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-col p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a,
.social-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a:hover,
.social-links a:hover {
  color: #38bdf8;
}

.footer-bottom {
  max-width: 1000px;
  margin: 40px auto 0 auto;
  padding-top: 20px;
  border-top: 1px solid #111827;
  text-align: center;
  font-size: 0.85rem;
  color: #4b5563;
}

.mission-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  background: #111827;
  border: 1px solid #1f2937;
  padding: 32px;
  border-radius: 12px;
  text-align: left;
}

.mission-logo-container {
  flex: 0 0 220px;
}

.competition-logo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}

.mission-text-container {
  flex: 1;
}

.mission-text-container h2 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 12px;
  text-align: left;
}

.mission-text-container p {
  margin-bottom: 0;
  font-size: 1rem;
}

.contact-section {
  max-width: 700px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  text-align: left;
  background: #111827;
  border: 1px solid #1f2937;
  padding: 32px;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: #f3f4f6;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  background-color: #0b0f19;
  border: 1px solid #1f2937;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.recaptcha-wrapper {
  display: flex;
  justify-content: center;
  margin: 10px 0 24px 0;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background-color: #38bdf8;
  color: #0b0f19;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.form-submit:hover {
  background-color: #7dd3fc;
  transform: translateY(-1px);
}

.hero-banner {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  border-bottom: 1px solid #1f2937;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  background: rgba(11, 15, 25, 0.65);
  padding: 40px 24px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.page-content {
  padding-top: 40px;
}

.page-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.hero-description {
  font-size: 1.25rem;
  color: #94a3b8;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  text-align: left;
}

.about-card {
  background: #111827;
  border: 1px solid #1f2937;
  padding: 32px;
  border-radius: 12px;
}

.about-card h2 {
  font-size: 1.4rem;
  color: #38bdf8;
  margin-top: 0;
  margin-bottom: 16px;
}

.about-card p {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 0;
  line-height: 1.6;
}

.section-subtitle {
  color: #94a3b8;
  margin-top: -12px;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.accolades-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
  text-align: left;
  border-left: 2px solid #1f2937;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -39px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.timeline-content {
  background: #111827;
  border: 1px solid #1f2937;
  padding: 24px;
  border-radius: 10px;
}

.timeline-year {
  display: inline-block;
  background-color: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.timeline-content h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin: 8px 0 4px 0;
}

.award-badge {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #eab308;
  margin-bottom: 12px;
  font-style: italic;
}

.timeline-content p {
  color: #94a3b8;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.accolades-hero {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.accolades-header-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(11, 15, 25, 0.75);
  padding: 24px 32px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.accolades-header-content .section-title {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 8px;
}

.accolades-header-content .section-subtitle {
  color: #94a3b8;
  margin-bottom: 0;
}

.accolades-hero.certificate-hero {
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0b0f19;
}

.section-background.certificate-img {
  object-fit: contain;
  background-color: #0b0f19;
}

.accolades-banner-section {
  text-align: center;
  margin-bottom: 50px;
}

.accolades-banner-section .accolades-header-content {
  background: transparent;
  padding: 0;
  margin-bottom: 24px;
}

.certificate-frame {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1f2937;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.certificate-photo {
  width: 100%;
  height: auto;
  display: block;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background: #111827;
  border: 1px solid #1f2937;
  padding: 36px;
  border-radius: 12px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.contact-intro {
  color: #94a3b8;
  margin-top: -8px;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-info-wrapper {
  width: 100%;
}

.contact-info-wrapper .info-card {
  background: #111827;
  border: 1px solid #1f2937;
  padding: 18px 24px;
  border-radius: 10px;
  text-align: center;
}

.contact-info-wrapper .info-card h3 {
  color: #38bdf8;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0;
  margin-bottom: 6px;
}

.contact-info-wrapper .info-card p {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 2px 0;
  line-height: 1.4;
}

.form-embed-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1f2937;
  background: #111827;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.form-embed-wrapper iframe {
  display: block;
  width: 100%;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: 24px;
  border-radius: 12px;
  border: 1px solid #1f2937;
}

.tiers-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #111827;
  text-align: center;
  font-size: 0.95rem;
}

.tiers-table th {
  padding: 16px 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
}

.tiers-table th span {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
}

.th-benefit { background-color: #0d1b2a; text-align: left; padding-left: 20px !important; }
.th-bronze { background-color: #b05023; }
.th-silver { background-color: #64748b; }
.th-gold { background-color: #b48312; }
.th-partner { background-color: #0f2b48; }

.tiers-table td {
  padding: 14px 12px;
  border-top: 1px solid #1f2937;
}

.benefit-name {
  text-align: left;
  padding-left: 20px !important;
  color: #f3f4f6;
  font-weight: 500;
}

.tiers-table tr:nth-child(even) {
  background-color: #0b0f19;
}

.check {
  color: #38bdf8;
  font-weight: bold;
  font-size: 1.1rem;
}

.cross {
  color: #4b5563;
}

.subteams-detail-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.subteam-card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 32px;
  text-align: left;
  transition: border-color 0.2s ease;
}

.subteam-card:hover {
  border-color: #38bdf8;
}

.subteam-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.subteam-header h2 {
  color: #38bdf8;
  margin: 0;
  font-size: 1.5rem;
}

.subteam-badge {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.subteam-desc {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.subteam-highlights {
  background: #0b0f19;
  border-radius: 8px;
  padding: 16px 20px;
  border: 1px solid #1f2937;
}

.subteam-highlights h3 {
  color: #f3f4f6;
  font-size: 0.9rem;
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subteam-highlights ul {
  margin: 0;
  padding-left: 20px;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.subteam-highlights li {
  margin-bottom: 6px;
}

.subteam-highlights li:last-child {
  margin-bottom: 0;
}

.join-cta-box {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-top: 20px;
}

.join-cta-box h2 {
  color: #ffffff;
  margin-top: 0;
}

.join-cta-box p {
  color: #94a3b8;
  margin-bottom: 24px;
}

.sponsors-section {
  text-align: center;
}

.sponsor-tier {
  margin-bottom: 3rem;
}

.sponsor-tier .sponsor-grid {
  pointer-events: auto;
}

.tier-label {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 1.5rem;
}

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-decoration: none;
  pointer-events: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.sponsor-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.95);
  transition: filter 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
  filter: brightness(1);
}

.sponsor-name {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #111111;
  font-weight: 600;
}

.partner-card {
  width: 100%;
  max-width: 380px;
  min-height: 180px;
  padding: 2.5rem;
}

.partner-card .sponsor-logo {
  max-height: 110px;
}

.gold-card {
  width: calc(33.333% - 1.5rem);
  min-width: 240px;
  max-width: 290px;
  min-height: 140px;
}

.gold-card .sponsor-logo {
  max-height: 75px;
}

.silver-card {
  width: calc(25% - 1.5rem);
  min-width: 200px;
  max-width: 230px;
  min-height: 120px;
}

.silver-card .sponsor-logo {
  max-height: 60px;
}

.bronze-card {
  width: calc(20% - 1.5rem);
  min-width: 160px;
  max-width: 180px;
  min-height: 100px;
}

.bronze-card .sponsor-logo {
  max-height: 48px;
}

.sponsors-cta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsors-cta p {
  margin-bottom: 1rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .mission-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .mission-text-container h2 {
    text-align: center;
  }
  .partner-card {
    max-width: 100%;
  }
  .gold-card, .silver-card, .bronze-card {
    width: 100%;
    max-width: 280px;
  }
}