/* Basic Reset and Variables */
@font-face {
  font-family: "GC EPICPRO";
  src: url("assets/fonts/GC%20EPICPRO.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg-dark: #000;
  --gray-lightest: #d9d9d9;
  --gray-light: #ccc;
  --gray-medium: #b3b3b3;
  --text-black: #000;
  --text-white: #fff;
  --text-blue: #253166;
  --text-gray: #727272;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0 20px;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* KV image: behind hero content only, scoped to hero section */
.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  z-index: 0;
  pointer-events: none;
}

.hero-background-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  pointer-events: none;
}

.hero-video-desktop {
  display: block;
}

.hero-video-mobile {
  display: none;
}

/* Only treat very small screens as "mobile" video. */
@media (max-width: 480px) {
  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }
}

.hero-video-mute-toggle {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 11;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.hero-video-mute-toggle:hover {
  transform: scale(1.04);
  background: rgba(0, 0, 0, 0.72);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.hero-video-mute-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 49, 102, 0.35);
}

.hero-video-mute-icon {
  display: none;
}

.hero-video-mute-icon svg {
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.hero-video-mute-toggle.is-muted .hero-video-mute-icon--muted {
  display: flex;
}

.hero-video-mute-toggle:not(.is-muted) .hero-video-mute-icon--unmuted {
  display: flex;
}

.hero-video-audio-toggle {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 11;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease,
    filter 0.15s ease;
}

.hero-video-audio-toggle:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: brightness(1.05);
}

.hero-video-audio-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 49, 102, 0.35);
}

.hero-video-audio-toggle.is-muted .hero-video-mute-icon--muted {
  display: flex;
}

.hero-video-audio-toggle:not(.is-muted) .hero-video-mute-icon--unmuted {
  display: flex;
}

/* Wrapper: fixed viewport-sized layer so gradients don’t add to page size; overflow clips to viewport */
.gradient-corners-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Layer 2: gradient – img at intrinsic size so resolution matches input */
/* Center of image at viewport top-left; only bottom-right of image visible */
.gradient-corner {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-61%, -33%);
  height: 27%;
  max-width: none;
  max-height: none;
  display: block;
  pointer-events: none;
  opacity: 0.8;
  z-index: 1;
}

.gradient-corner-br {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  transform: translate(63%, 40%);
  height: 88%;
  z-index: 0;
}

/* Grain overlay: above background/gradient, below text */
.page-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Layer 3 (top): all text / content */
main,
header {
  width: 70%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* --- Header --- */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  color: var(--text-black);
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  padding: 12px 15%;
  transition:
    background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-bottom-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-backdrop-filter 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.is-scrolled {
  background-color: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.menu-open .main-header {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  z-index: 10;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-white);
  padding: 5px 25px;
  display: block;
  font-size: 14px;
  transition: background-color 0.2s;
}

.main-nav a:hover {
  background-color: var(--text-white);
  color: var(--text-black);
}

.main-nav ul li:last-child {
  border: 1px solid white;
}

.lang-toggle {
  background: transparent;
  border: none;
  color: var(--text-white);
  padding: 5px 25px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s;
}

.lang-toggle:hover {
  background-color: var(--text-white);
  color: var(--text-black);
}

.lang-active {
  font-weight: 700;
}

.lang-inactive {
  opacity: 0.5;
}

body.page-contact .main-nav a[href="contact.html"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-white);
  z-index: 12;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

/* Removed the literal white box, styling the text instead */
.hero-content-overlay {
  text-align: center;
  position: relative;
  z-index: 10;
  font-family: "GC EPICPRO", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-top: 0px;
}

.hero-content-overlay h1 {
  font-family: "GC EPICPRO", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 7rem;
  line-height: 0.7;
  color: var(--text-white); /* White text */
}

.hero-description {
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 1rem;
  line-height: 1.5;
}

/* --- Description Section --- */
.description-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.description-section-first {
  position: relative;
  z-index: 10;
  margin-top: 64px;
}

.description-box {
  width: 85%;
  padding: 0px 30px 30px 30px;
  text-align: center;
  color: var(--text-white);
  border-radius: 8px;
  position: relative;
  z-index: 2;
}

.description-tagline {
  width: 85%;
  text-align: center;
  color: var(--text-white);
  font-weight: bold;
}

/* --- Features Section --- */
.features-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.feature-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card-header {
  position: relative;
  width: 100%;
  min-height: 160px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-title {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 10px;
  font-family: "GC EPICPRO", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 4rem;
  font-weight: bold;
  color: var(--text-white);
}

.big-number {
  width: 100%;
  margin-top: -4.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: "GC EPICPRO", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 10rem;
  font-weight: 800;
  color: var(--text-blue);
  z-index: 0;
  line-height: 1;
}

.short-desc {
  width: 80%;
  min-height: 4em;
  flex-shrink: 0;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-white);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* --- Blue gradient behind feature section (index) --- */
.enroll-content-wrapper {
  position: relative;
}

.prizes-section .prizes-gradient {
  display: none !important;
}

.enroll-content-wrapper .gradient-corner-enroll {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translate(-50%, -15%);
  height: 130%;
  max-width: none;
  max-height: none;
  display: block;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

.enroll-content-wrapper .enroll-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.signup-section .enroll-content {
  width: 70%;
  max-width: 1440px;
  margin: 0 auto;
}

/* --- Blue gradient behind "How to sign up" section (index) --- */
.signup-section {
  overflow: hidden;
}

.enroll-content-wrapper.signup-section {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.signup-section .gradient-corner-enroll {
  position: absolute;
  top: -18%;
  right: -8%;
  left: auto;
  display: none;
  transform: rotate(28deg);
  height: 130%;
  max-width: none;
  max-height: none;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

/* --- Shared Components & CTA Sections --- */
section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.newsletter-title-box,
.social-title-box,
.faq-title-box {
  width: 85%;
  text-align: center;
  padding: 15px;
  margin-bottom: 15px;
  color: var(--text-white);
  font-weight: 500;
}

.sub-heading {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 15px;
  margin-bottom: 15px;
  color: var(--text-white);
  font-weight: 700;
  font-size: 2rem;
}

.primary-cta {
  border: 1px solid var(--text-white);
  padding: 5px 25px;
  cursor: pointer;
  font-size: 14px;
  background-color: transparent;
  color: var(--text-white);
  transition: background-color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.primary-cta:hover {
  background-color: var(--text-white);
  color: var(--text-black);
}

.journey-tnc {
  display: block;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-white);
  text-decoration: underline;
}

.secondary-cta {
  border: solid 2px var(--text-white);
  padding: 12px 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  background-color: var(--text-white);
  color: var(--text-black);
  transition: background-color 0.2s;
}

.secondary-cta:hover {
  background-color: var(--text-black);
  color: var(--text-white);
}

.journey-start-section {
  margin-bottom: 48px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.journey-heading {
  font-family: "GC EPICPRO", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 4rem;
  line-height: 0.7;
  white-space: nowrap;
  width: auto;
}

.journey-start-section button {
  font-weight: bold;
}

/* --- Program Setup Section (index) --- */
.program-setup-section {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 0 48px 0;
  padding: 48px 0;
  overflow: hidden;
}

.program-setup-section .gradient-corner-enroll {
  position: absolute;
  top: -38%;
  left: 50%;
  transform: translate(-50%, -15%);
  height: 210%;
  max-width: none;
  max-height: none;
  display: block;
  pointer-events: none;
  opacity: 0.8;
  z-index: 0;
}

.program-setup-inner {
  width: 70%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.program-setup-heading {
  margin-bottom: 24px;
}

.program-setup-grid {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 0px;
  align-items: start;
}

.program-stage {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.program-stage-top {
  position: relative;
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.program-stage-label {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 10px;
  font-family: "GC EPICPRO", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: var(--text-white);
}

.program-stage-number {
  width: 100%;
  margin-top: -3.2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: "GC EPICPRO", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  color: #1f2a66;
  opacity: 0.95;
  z-index: 0;
}

.program-stage-caption {
  margin-top: -24px;
  max-width: 180px;
  margin-inline: auto;
  text-align: center;
  color: var(--text-white);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .program-setup-inner {
    width: 90%;
  }

  .program-setup-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .program-stage-label {
    font-size: 4.5rem;
  }

  .program-stage-number {
    font-size: 10.5rem;
  }
}

/* Mobile: logo left, hamburger right, dropdown menu */
@media (max-width: 768px) {
  body {
    padding: 68px 0 12px;
  }

  main,
  header {
    width: 92%;
    max-width: none;
  }

  .gradient-corner {
    height: 8%;
  }

  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 12px 4%;
    margin: 0;
    background-color: transparent;
    transition:
      background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      border-bottom-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      -webkit-backdrop-filter 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      backdrop-filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 101;
  }

  .main-header.is-scrolled {
    background-color: rgba(0, 0, 0, 0.45);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  body.menu-open .main-header {
    background-color: #000;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom-color: transparent;
  }

  .hamburger-btn {
    display: flex;
    z-index: 101;
  }

  .logo {
    height: 56px;
  }

  .main-nav {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #000;
    z-index: 99;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 32px;
    opacity: 0;
    transform: translate3d(100%, 0, 0);
    will-change: transform, opacity;
    backface-visibility: hidden;
    transition:
      transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0.35s;
    visibility: hidden;
    pointer-events: none;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0s linear 0s;
  }

  .main-nav ul {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .main-nav ul li {
    border: none;
    border-bottom: none;
  }

  .main-nav ul li:last-child {
    border: 1px solid var(--text-white);
  }

  .main-nav a {
    padding: 14px 32px;
    font-size: 1.25rem;
    display: block;
  }

  .lang-toggle {
    padding: 14px 32px;
    font-size: 1.25rem;
  }

  .hero-section {
    height: 420px;
    margin-top: -12px;
    margin-bottom: 16px;
    align-items: center;
    justify-content: center;
  }

  .hero-content-overlay {
    margin-top: 0px;
  }

  .hero-content-overlay h1 {
    font-size: 3rem;
    line-height: 0.85;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-top: 0.75rem;
  }

  .description-section-first {
    margin-top: 0px;
  }

  .description-section {
    margin-bottom: 28px;
  }

  .description-box {
    font-size: 3.33333333vw;
    width: 100%;
    padding: 0 16px 24px;
  }

  .sub-heading {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    font-size: 2rem;
  }

  .journey-start-section {
    width: 100%;
    left: 0;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding: 0 16px;
  }

  .journey-heading {
    font-size: 2.5rem;
    line-height: 1.1;
    white-space: normal;
    text-align: center;
    width: 100%;
  }

  .features-section {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
  }

  .feature-card {
    width: 100%;
    max-width: 320px;
  }

  .feature-card-header {
    min-height: 120px;
  }

  .feature-title {
    font-size: 3rem;
  }

  .big-number {
    font-size: 5.5rem;
    margin-top: -2.5rem;
  }

  .short-desc {
    width: 100%;
    min-height: auto;
    padding: 8px 4px;
    font-size: 0.85rem;
  }

  .enroll-content-wrapper .enroll-content {
    padding: 0 16px;
  }

  .signup-section .enroll-content {
    width: 92%;
    max-width: none;
  }

  .enroll-content-wrapper .enroll-content .sub-heading {
    margin-bottom: 16px;
  }

  .enroll-content-wrapper .enroll-content .features-section {
    padding: 0 0 32px;
  }

  .enroll-content-wrapper
    .enroll-content
    .features-section
    > div[style*="width:100%"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
  }

  .program-setup-section {
    padding: 32px 0;
    margin-bottom: 32px;
  }

  .program-setup-section .gradient-corner-enroll {
    transform: translate(-50%, -15%) rotate(63deg);
    top: 12%;
    left: 70%;
    height: 100%;
  }

  .enroll-content-wrapper .gradient-corner-enroll {
    transform: translate(-50%, -15%) rotate(4deg);
    top: 0%;
    left: 180%;
    height: 240%;
  }

  .prizes-section .prizes-gradient {
    z-index: 0;
  }

  .signup-section .gradient-corner-enroll {
    top: -66%;
    right: -128%;
    left: auto;
    height: 190%;
    display: block;
    transform: rotate(5deg);
  }

  .program-setup-inner {
    width: 92%;
  }

  .program-setup-heading {
    margin-bottom: 20px;
  }

  .program-setup-grid {
    gap: 24px;
  }

  .program-stage {
    margin-bottom: 24px;
  }

  .program-stage-top {
    min-height: 100px;
  }

  .program-stage-label {
    font-size: 3rem;
  }

  .program-stage-number {
    font-size: 10rem;
    margin-top: -3rem;
  }

  .program-stage-caption {
    font-size: 1rem;
    margin-top: -14px;
  }

  .about-title {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .about-description {
    padding: 0 16px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }

  .about-logos {
    flex-direction: column;
    gap: 2rem;
    margin-top: 0.5rem;
  }

  .about-logo {
    height: 28px;
  }

  .first-logo {
    height: 28px;
  }

  .second-logo {
    height: 33px;
  }

  #faq {
    margin-top: 2rem;
  }

  .faq-item {
    width: 100%;
  }

  .faq-question {
    padding: 14px 12px 24px;
    font-size: 0.95rem;
    text-align: left;
  }

  .faq-answer p,
  .faq-answer > div {
    padding: 0 12px 16px;
    font-size: 0.9rem;
    text-align: left;
  }

  .social-section {
    margin-top: 3rem;
  }

  .social-section .sub-heading {
    margin-bottom: 16px;
  }

  .social-icons-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2.5rem;
  }

  .social-icon-link {
    width: 44px;
    height: 44px;
  }

  .social-icon-svg {
    width: 24px;
    height: 24px;
  }

  .primary-cta {
    padding: 14px 32px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .prizes-section .prizes-gradient {
    display: block !important;
  }

  .hero-section {
    height: 560px;
    margin-top: 14px;
  }

  .hero-video-mobile {
    object-fit: contain;
    object-position: center center;
  }
}

/* --- Newsletter Specifics --- */
.newsletter-form {
  display: flex;
  width: 85%;
  justify-content: center;
}

.newsletter-form input {
  padding: 12px 15px;
  background-color: var(--text-black);
  border: solid 2px var(--text-white);
  flex: 1;
  max-width: 300px;
  outline: none;
  color: var(--text-gray);
}

.newsletter-form input:focus {
  border-color: var(--gray-medium);
}

/* --- Social Section (spacing before) --- */
.social-section {
  margin-top: 6rem;
}

/* --- Social Icons --- */
.social-icons-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
}

.social-icon-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: var(--text-black);
  background-color: var(--text-white);
  border-radius: 50%;
  transition:
    color 0.2s,
    background-color 0.2s;
}

.social-icon-link:hover {
  background-color: var(--text-black);
  color: var(--text-white);
}

.social-icon-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* --- Partners / About Section --- */
.about-title {
  width: 85%;
  text-align: center;
  color: var(--text-white);
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-description {
  width: 100%;
  text-align: center;
  color: var(--text-white);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.about-logos {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  margin-top: 1rem;
}

.about-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.first-logo {
  height: 30px;
}

.second-logo {
  height: 33px;
}

@media (max-width: 768px) {
  .about-logos {
    flex-direction: column;
    gap: 2rem;
    margin-top: 0.5rem;
  }
}

/* --- FAQ Section (spacing before) --- */
#faq {
  margin-top: 3rem;
}

/* --- FAQ Specifics --- */
.faq-title-box {
  width: 150px;
  font-weight: bold;
}

.faq-list {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.faq-item {
  width: 85%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: center;
  padding: 15px 15px 28px 15px;
  border: none;
  background: transparent;
  color: var(--text-white);
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-question::after {
  content: "";
  display: block;
  float: right;
  width: 0;
  height: 0;
  margin-top: 8px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out;
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer p,
.faq-answer > div {
  padding: 0 15px 20px 15px;
  margin: 0;
  color: var(--gray-lightest);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}
