@font-face {
  font-family: 'Limerick ExtraBold';
  src: url('../fonts/Limerick-ExtraBold.eot');
  src: url('../fonts/Limerick-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Limerick-ExtraBold.woff2') format('woff2'),
    url('../fonts/Limerick-ExtraBold.woff') format('woff'),
    url('../fonts/Limerick-ExtraBold.ttf') format('truetype'),
    url('../fonts/Limerick-ExtraBold.svg#Limerick-ExtraBold') format('svg');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}


:root {
  --campaign-navy: #060b3a;
  --campaign-gold: #ffd54f;
  --campaign-gold-strong: #f7b500;
  --campaign-gold-soft: #fff2b5;
  --campaign-card: #000334;
  /*rgba(7, 14, 64, 0.84);*/
  --campaign-card-border: rgba(255, 234, 148, 0.22);
  --campaign-copy: rgba(255, 255, 255, 0.82);
  --campaign-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

html:has(body.fifa-2026-page),
body.fifa-2026-page {
  overflow-x: hidden;
  max-width: 100%;
}

body.fifa-2026-page {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #fff;
  background-color: #000023;
}

.w-30 {
  width: 30% !important;
}

.fifa-2026-page a {
  color: #fff;
  text-decoration: none;
}

.fifa-2026-page a:hover {
  color: #fff2b5;
  text-decoration: none;
}

.fifa-2026-page h1,
.fifa-2026-page h2,
.fifa-2026-page h3,
.fifa-2026-page h4,
.fifa-2026-page h5,
.fifa-2026-page h6 {
  font-family: 'Poppins', sans-serif;
}

.fifa-2026-page ol,
.fifa-2026-page ul {
  padding-left: 0;
}

.fifa-2026-page .container {
  max-width: 1200px;
}

/* ── Float ribbon ───────────────────────────────────────────────── */
@keyframes ribbon-slide-down {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.float-ribbon {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
  animation: ribbon-slide-down 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.float-ribbon img {
  position: relative;
  top: 0;
  left: 5%;
  display: block;
  width: 90%;
  object-fit: cover;
}

.fifa-2026-page #header {
  transition: all 0.5s;
  z-index: 997;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: url('../public/images/fifa2026/bg-header.webp') no-repeat center top;
  background-size: cover;
  /* height: 172px; */
}

.fifa-2026-page #header.header-scrolled {
  padding: 12px 0;
}

.fifa-2026-page #header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.fifa-2026-page #header .logo img {
  max-height: 50px;
}

.fifa-2026-page #header .btn-language .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 50px;
  padding: 0 24px;
  height: 40px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.fifa-2026-page #header .btn-language .btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 12px rgba(255, 213, 79, 0.18);
  color: #fff;
}



.fifa-2026-page #header .btn-language .btn:active:focus,
.fifa-2026-page #header .btn-language .btn:focus {
  box-shadow: none !important;
  /* border-color: rgba(255, 213, 79, 0.4); */
  outline: none;
}

.fifa-2026-page #header .btn-language .btn img {
  height: 18px;
}

.fifa-2026-page #header .btn-language .btn i {
  font-size: 18px;
  line-height: 1;
  margin-left: 0;
}

/* Rotate chevron when open */
.fifa-2026-page #header .btn-language .btn .bx-chevron-down {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.fifa-2026-page #header .btn-language.show .btn .bx-chevron-down {
  transform: rotate(180deg);
}

.fifa-2026-page #header .dropdown-toggle::after {
  display: none;
}

/* Dropdown panel */
.fifa-2026-page #header .dropdown-menu {
  background: rgba(8, 12, 50, 0.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 213, 79, 0.08);
  padding: 8px;
  min-width: 140px;
  /* always block — visibility/opacity drive show/hide so Bootstrap state stays intact */
  display: block !important;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.fifa-2026-page #header .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fifa-2026-page #header .dropdown-item {
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.fifa-2026-page #header .dropdown-item:hover,
.fifa-2026-page #header .dropdown-item:focus {
  /* color: #fff;
  background: rgba(255, 213, 79, 0.12); */
  color: #0b103b;
  background: linear-gradient(135deg, var(--campaign-gold-soft), var(--campaign-gold-strong));
  padding-left: 18px;
}

.fifa-2026-page .back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: linear-gradient(0deg, rgba(254, 173, 0, 1) 0%, rgba(252, 237, 0, 1) 100%);
  transition: all 0.4s;
}

.fifa-2026-page .back-to-top i {
  font-size: 28px;
  color: #43005d;
  line-height: 0;
}

.fifa-2026-page .back-to-top.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .fifa-2026-page [data-aos-delay] {
    transition-delay: 0 !important;
  }

  .float-ribbon {

    top: 8%;
  }
}

.fifa-2026-page .campaign-landing {
  position: relative;
  overflow: hidden;
  background: url('../public/images/fifa2026/bgmain-1.webp') no-repeat center top;
  background-size: contain;
  margin-top: -30px;
  padding-top: 30px;
}

@media (min-width: 1920px) {
  .fifa-2026-page .campaign-landing {
    background-size: 1540px auto;
    background-position: center top;
  }

  .fifa-2026-page #header {
    background-size: 1540px auto;
    background-position: center top;

  }
}



/* .fifa-2026-page .campaign-landing::before,
.fifa-2026-page .campaign-landing::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
} */

/* .fifa-2026-page .campaign-landing::before {
  width: 420px;
  height: 420px;
  top: 120px;
  left: -160px;
  background: radial-gradient(circle, rgba(27, 84, 255, 0.26), transparent 70%);
}

.fifa-2026-page .campaign-landing::after {
  width: 480px;
  height: 480px;
  top: 880px;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 190, 30, 0.18), transparent 72%);
} */

.fifa-2026-page .campaign-section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.fifa-2026-page .campaign-section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 36px);
  margin-bottom: 0.75rem;
}

.fifa-2026-page .campaign-section-title p {
  color: var(--campaign-copy);
  max-width: 760px;
  margin: 0 auto;
}

.fifa-2026-page .campaign-divider {
  width: 132px;
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--campaign-gold), transparent);
  box-shadow: 0 0 22px rgba(255, 213, 79, 0.4);
}

@keyframes btn-pulse-glow {

  0%,
  100% {
    box-shadow: 2px 3px 10px 0px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(247, 181, 0, 0.55);
  }

  50% {
    box-shadow: 2px 3px 10px 0px rgba(0, 0, 0, 0.35), 0 0 0 12px rgba(247, 181, 0, 0);
  }
}

@keyframes btn-shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes btn-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.fifa-2026-page .campaign-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 56px;
  padding: 0.95rem 2rem;
  border: 0;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fifa-2026-page .campaign-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 191, 0, 0.2);
  color: #0b103b;
}

.fifa-2026-page .campaign-button-primary {
  position: relative;
  overflow: hidden;
  color: #0b103b;
  background: linear-gradient(135deg, var(--campaign-gold-soft), var(--campaign-gold-strong));
  text-transform: uppercase;
  animation: btn-pulse-glow 2.4s ease-in-out infinite;
}

/* Shimmer sweep on primary button */
.fifa-2026-page .campaign-button-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg,
      transparent 35%,
      rgba(255, 255, 255, 0.45) 50%,
      transparent 65%);
  background-size: 200% 100%;
  animation: btn-shimmer 2.8s linear infinite;
  pointer-events: none;
}

.fifa-2026-page .campaign-button-outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.fifa-2026-page .campaign-button-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* Float animation on the final CTA "Be Our Partner" button */
.fifa-2026-page .campaign-cta .campaign-button-primary {
  animation: btn-pulse-glow 2.4s ease-in-out infinite,
    btn-float 3s ease-in-out infinite;
}

.fifa-2026-page .campaign-hero {
  padding: 12rem 0 18rem 0;
  /* min-height: 100vh; */
  position: relative;
  align-items: center;
  /* border: solid 3px #43005d; */
}

/* .fifa-2026-page .campaign-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(5, 11, 50, 0), rgba(5, 11, 50, 1));
} */

.fifa-2026-page .campaign-hero .container,
.fifa-2026-page .campaign-hero .row {
  position: relative;
  z-index: 1;
}

.fifa-2026-page .campaign-hero-copy {
  max-width: 580px;
  padding-bottom: 2rem;
}

@property --kicker-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes kicker-border-spin {
  to {
    --kicker-angle: 360deg;
  }
}

.fifa-2026-page .campaign-kicker {
  display: inline-flex;
  align-items: center;
  padding: 10px 50px;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  border: none;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
}

.fifa-2026-page .campaign-kicker::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 3px;
  background: conic-gradient(from var(--kicker-angle),
      #af0a00,
      /* #1a237e, */
      #1e19af,
      #006432,
      #1e19af,
      /* #1a237e, */
      #af0a00);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: kicker-border-spin 3s linear infinite;
}

.fifa-2026-page .campaign-hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(42px, 10vw, 100px);
  line-height: 0.95;
  margin-bottom: 1rem;

  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.fifa-2026-page .campaign-hero h1 span {
  display: block;
  background: linear-gradient(0deg, rgba(175, 112, 18, 1) 0%, rgba(251, 230, 134, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter:
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6)) drop-shadow(0 6px 20px rgba(255, 200, 80, 0.35));
}

.fifa-2026-page .campaign-hero h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 36px);
  line-height: 0.95;
}


.fifa-2026-page .campaign-hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 24px);
  margin-bottom: 1.25rem;
  color: rgba(255, 185, 20, 1);

}

.fifa-2026-page .campaign-hero-text {
  color: var(--campaign-copy);
  max-width: 470px;
  margin-bottom: 1.5rem;
  margin-bottom: 1.25rem;
}

/* .fifa-2026-page .campaign-hero .campaign-button-primary {
  font-size: 24px;
  padding: 18px 36px;
} */

.fifa-2026-page .campaign-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.fifa-2026-page .campaign-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.fifa-2026-page .campaign-chip {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.95rem;
}

/* Desktop aside backdrop — sits BEHIND the aside (z-index 99 < aside 100) */
#heroContactBackdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.fifa-2026-page .campaign-hero-contact {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(92vw, 440px);
  padding: 3rem;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(30, 50, 125, 1) 0%, rgba(0, 0, 35, 1) 100%);
  box-shadow:
    var(--campaign-shadow),
    0 0 10px 2px rgba(220, 213, 255, 0.5),
    0 0 10px 2px rgba(30, 25, 175, 0.25);
  z-index: 999;
  text-align: center;
  /* hidden state — translate includes the -50%/-50% centering offset */
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -48%) scale(0.97);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.fifa-2026-page .campaign-hero-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(220, 213, 255, 1), rgba(30, 25, 175, 1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.fifa-2026-page .campaign-hero-contact.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.fifa-2026-page .campaign-hero-contact-close {
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: #1E327D;
  background: radial-gradient(circle, rgba(30, 50, 125, 1) 0%, rgba(0, 0, 35, 1) 100%);
  border: 2px solid rgba(246, 211, 119, 1);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 3rem;
}

.fifa-2026-page .campaign-hero-contact-close:hover {
  background: radial-gradient(circle, rgba(30, 50, 125, 1) 0%, rgba(0, 0, 35, 1) 100%);
}



.fifa-2026-page .campaign-hero-contact h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0;
  color: #FFC800;
  font-style: normal;
}

.fifa-2026-page .campaign-hero-contact p {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}


.fifa-2026-page .campaign-hero-contact .contact-list .contact-box {
  position: relative;
  width: 100%;
  border-radius: 15px;
  padding: 12px 24px;
  border: none;
  margin-bottom: 4px;
}

/* Gradient border via pseudo-element mask (works with border-radius) */
.fifa-2026-page .campaign-hero-contact .contact-list .contact-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(220, 213, 255, 1), rgba(30, 25, 175, 1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.fifa-2026-page .campaign-hero-contact .contact-list .contact-box.yellow::before {
  background: linear-gradient(135deg, rgba(255, 230, 150, 1), rgba(200, 130, 0, 1));
}


.fifa-2026-page .campaign-hero-contact .contact-list .contact-box h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
  color: #FFC800;
  text-align: left;
}

.fifa-2026-page .campaign-hero-contact .contact-list .contact-box p {
  color: #fff;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.fifa-2026-page .campaign-hero-contact img.icon {
  height: 32px;
  width: auto;
}

.fifa-2026-page .campaign-hero-contact img.arrow {
  height: 14px;
  width: auto;
  transition: transform 0.3s ease;
}

/* Contact box hover */
.fifa-2026-page .campaign-hero-contact .contact-list a {
  display: block;
  text-decoration: none;
}

.fifa-2026-page .campaign-hero-contact .contact-list .contact-box {
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.fifa-2026-page .campaign-hero-contact .contact-list a:hover .contact-box {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.fifa-2026-page .campaign-hero-contact .contact-list a:hover .contact-box.yellow {
  background: rgba(255, 200, 0, 0.08);
  box-shadow: 0 4px 18px rgba(247, 181, 0, 0.2);
}

.fifa-2026-page .campaign-hero-contact .contact-list a:hover img.arrow {
  transform: translateX(4px);
}

.fifa-2026-page .campaign-contact-list,
.fifa-2026-page .campaign-terms-list,
.fifa-2026-page #footer .footer-top .footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fifa-2026-page .campaign-contact-list li+li {
  margin-top: 0.7rem;
}

.fifa-2026-page .campaign-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  word-break: break-word;
}

.fifa-2026-page .campaign-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 213, 79, 0.25), rgba(247, 181, 0, 0.5));
  color: var(--campaign-gold-soft);
  flex-shrink: 0;
}

.fifa-2026-page .campaign-hero-visual {
  min-height: 560px;
}

.fifa-2026-page .campaign-reward,
.fifa-2026-page .campaign-requirement,
.fifa-2026-page .campaign-terms,
.fifa-2026-page .campaign-cta {
  position: relative;
  z-index: 1;

}

.fifa-2026-page .campaign-reward {
  padding: 0 0 2.5rem 0;

}

.fifa-2026-page .campaign-requirement,
.fifa-2026-page .campaign-terms,
.fifa-2026-page .campaign-cta {
  padding: 2.5rem 0;
}

.fifa-2026-page .campaign-reward .container {
  position: relative;
}

.fifa-2026-page .campaign-reward .scroll-btn {
  display: block;
  margin: 1.5rem auto 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  z-index: 999;
}

.fifa-2026-page .campaign-reward .scroll-btn img {
  height: 64px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}


/* Desktop only — absolute position inside campaign-reward */
@media (min-width: 992px) {
  .fifa-2026-page .campaign-reward .scroll-btn {
    position: absolute;
    bottom: 10%;
    right: -10%;
    margin: 0;
    z-index: 999 !important;
  }
}

/* Requirement collapse wrapper */
.campaign-requirement-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
  opacity: 0;
  overflow: hidden;
}

.campaign-requirement-collapse>* {
  min-height: 0;
  overflow: hidden;
}

.campaign-requirement-collapse.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.fifa-2026-page .campaign-requirement {
  background: #000033;
  background: linear-gradient(0deg, rgba(0, 0, 50, 1) 0%, rgba(0, 0, 33, 1) 100%);
}

.fifa-2026-page .campaign-terms {
  background: #000033;
  background: linear-gradient(0deg, rgba(0, 0, 70, 1) 0%, rgba(0, 0, 50, 1) 100%);
}

.fifa-2026-page .campaign-cta {
  background: #000033;
  background: linear-gradient(0deg, rgba(1, 0, 76, 1) 0%, rgba(0, 0, 70, 1) 100%);
}

/* .fifa-2026-page .campaign-reward {
  padding-top: 2.5rem;
} */
.fifa-2026-page .campaign-reward::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(0, 0, 33, 0), rgba(0, 0, 33, 1));
  pointer-events: none;
}

.fifa-2026-page .campaign-podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.fifa-2026-page .campaign-prize-card {
  position: relative;
  padding: 2rem 1.25rem 1.6rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(1, 7, 34, 0.98)),
    linear-gradient(180deg, rgba(8, 17, 75, 0.94), rgba(5, 10, 44, 0.96));
  border: 1px solid var(--campaign-card-border);
  text-align: center;
  /* box-shadow: var(--campaign-shadow); */
  overflow: hidden;
}

.fifa-2026-page .campaign-prize-card::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 213, 79, 0.9), transparent);
  box-shadow: 0 0 28px rgba(255, 188, 30, 0.75);
}

.fifa-2026-page .campaign-prize-card.featured {
  transform: translateY(-12px);
  padding-top: 2.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(5, 9, 33, 0.98)),
    linear-gradient(180deg, rgba(15, 31, 111, 0.94), rgba(4, 8, 34, 0.96));
}

.fifa-2026-page .campaign-prize-card.tier-two,
.fifa-2026-page .campaign-prize-card.tier-three {
  min-height: 320px;
}

.fifa-2026-page .campaign-prize-card.featured {
  min-height: 390px;
}

.fifa-2026-page .campaign-tier {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  color: #08103c;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  background: linear-gradient(135deg, #fff4b8, #f7b500);
}

.fifa-2026-page .campaign-prize-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  margin-bottom: 0.75rem;
  color: var(--campaign-gold);
}

.fifa-2026-page .campaign-prize-card p {
  font-size: 1.05rem;
  margin-bottom: 0;
  color: #fff;
}

.fifa-2026-page .campaign-prize-card small {
  display: block;
  margin-top: 0.75rem;
  color: var(--campaign-copy);
}

.fifa-2026-page .campaign-requirement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.fifa-2026-page .campaign-requirement-card {
  height: 100%;
  padding: 4rem 1.35rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(28, 43, 126, 0.98), rgba(5, 10, 44, 0.98));
  border: 3px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--campaign-shadow);
  text-align: center;
}

.fifa-2026-page .campaign-requirement-card.is-gold {
  background: linear-gradient(135deg, rgba(255, 190, 30, 0.9), rgba(6, 10, 43, 0.95));
}

.fifa-2026-page .campaign-requirement-card.is-red {
  background: linear-gradient(135deg, rgba(174, 65, 26, 0.92), rgba(6, 10, 43, 0.98));
}

.fifa-2026-page .campaign-requirement-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.9rem);
  margin-bottom: 0.45rem;
}

.fifa-2026-page .campaign-requirement-card h3 span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.55em;
}

.fifa-2026-page .campaign-requirement-card .campaign-or {
  display: block;
  margin: 1rem auto;
  width: 100px;
  text-align: center;
  color: var(--campaign-gold-soft);
  position: relative;
}

.fifa-2026-page .campaign-requirement-card .campaign-or::before,
.fifa-2026-page .campaign-requirement-card .campaign-or::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 1px;
  border-top: 1px solid rgba(255, 213, 79, 0.55);
  border-bottom: 1px solid rgba(255, 213, 79, 0.55);
  border-radius: 50%;
  background: rgba(255, 213, 79, 0.55);
}

.fifa-2026-page .campaign-requirement-card .campaign-or::before {
  right: calc(100% + 8px);
}

.fifa-2026-page .campaign-requirement-card .campaign-or::after {
  left: calc(100% + 8px);
}

.fifa-2026-page .campaign-requirement-card h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  margin-bottom: 0.4rem;
  color: var(--campaign-gold);
}

.fifa-2026-page .campaign-requirement-card p {
  margin-bottom: 0;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.fifa-2026-page .campaign-terms-grid {
  /* display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem; */
  margin: 0 auto;
}



.fifa-2026-page .campaign-info-box {
  margin: 2rem;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: #000023;
  background: linear-gradient(0deg, rgba(0, 0, 35, 1) 0%, rgba(30, 50, 125, 1) 100%);
  color: #fff;
  /* display: flex; */
  /* gap: 1.25rem; */
}

.fifa-2026-page .campaign-info-box img {
  height: 64px;
}

.fifa-2026-page .campaign-info-box h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  /* margin-bottom: 0.65rem; */
  color: var(--campaign-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fifa-2026-page .campaign-info-box p {
  margin-bottom: 0;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 600;
}

.fifa-2026-page .campaign-terms-panel {
  padding: 1.75rem;
}

.fifa-2026-page .campaign-terms-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--campaign-copy);
  font-size: 1rem;
}

.fifa-2026-page .campaign-terms-list li+li {
  margin-top: 1rem;
}

.fifa-2026-page .campaign-terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  background: url('../public/images/fifa2026/ico-1.webp') center / contain no-repeat;
}

.fifa-2026-page .campaign-terms-mobile-toggle {
  display: none;
}

.fifa-2026-page .campaign-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 4rem;
  margin: 3rem 0 5rem 0;
  background: #010334;
  border-radius: 999px;
  border: solid 2px rgba(246, 221, 119, 1)
}

.fifa-2026-page .campaign-final-cta h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.fifa-2026-page .campaign-final-cta p {
  margin-bottom: 0;
  color: var(--campaign-copy);
}

.fifa-2026-page #footer {
  color: #fff;
  background: #00004A;
  background: linear-gradient(0deg, rgba(0, 0, 74, 1) 37%, rgba(0, 0, 36, 1) 100%);
  padding: 40px 0 40px;
}

.fifa-2026-page .campaign-footer {
  background: #00006e;
}

.fifa-2026-page .campaign-footer-group {
  height: 100%;
}

.fifa-2026-page .campaign-footer-title {
  margin-bottom: 1rem;
  color: #c8daff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}

.fifa-2026-page .campaign-footer-group.center .campaign-footer-title {
  text-align: center;
}

.fifa-2026-page .campaign-footer-group.center .campaign-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.fifa-2026-page .campaign-footer-group.left .campaign-footer-title {
  text-align: left;
}

.fifa-2026-page .campaign-footer-group.left .campaign-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  /* gap: 0.35rem; */
  gap: 0.5rem;
}

.fifa-2026-page .campaign-footer-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.fifa-2026-page .campaign-footer-logo-lg {
  height: 64px;
}

.fifa-2026-page .campaign-footer-logo-sm {
  height: 40px;
}

@media (max-width: 767.98px) {
  .fifa-2026-page .campaign-footer-sponsors-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start !important;
    padding-bottom: 4px;
  }

  .fifa-2026-page .campaign-footer-sponsors-row::-webkit-scrollbar {
    display: none;
  }

  .fifa-2026-page .campaign-footer-sponsors-row .col {
    flex: 0 0 auto;
    width: auto;
  }

  .fifa-2026-page .campaign-footer-sponsors-row .campaign-footer-logo-sm {
    height: 28px;
  }

  .fifa-2026-page .campaign-footer-group.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.fifa-2026-page .campaign-footer-logo-xs {
  height: 25px;
}

.fifa-2026-page .campaign-footer-caption {
  margin-bottom: 0;
  font-size: 9px;
  line-height: 1.35;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.fifa-2026-page .campaign-footer-divider {
  width: 100%;
  height: 1px;
  margin: 1.5rem 0;
  background: #a3d1ff;
}

.fifa-2026-page .campaign-footer-awards-list {
  gap: 0.5rem 1rem;
}

.fifa-2026-page .campaign-footer-award-image {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.fifa-2026-page .campaign-footer-license-image {
  width: auto;
  height: 40px;
  margin-bottom: 0.35rem;
}

.fifa-2026-page .campaign-footer-license-text {
  margin-bottom: 0;
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  /* text-align: center; */
  font-family: 'Poppins', sans-serif;
}

.fifa-2026-page .campaign-footer-mobile-info {
  padding: 0 1rem;
}

.fifa-2026-page .campaign-footer-info-image {
  margin: 0 auto;
}

.fifa-2026-page .modal-content {
  border-radius: 26px;
  border: 1px solid rgba(255, 213, 79, 0.24);
  background: linear-gradient(180deg, rgba(9, 15, 59, 0.98), rgba(4, 9, 34, 1));
  box-shadow: var(--campaign-shadow);
  padding: 0;
}

/* Custom contact popup (mobile) — no Bootstrap modal dependency */
/* ── Mobile contact popup — bottom sheet ─────────────────────────── */
#contactPopup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

#contactPopup.is-open {
  display: flex;
}

#contactPopupBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 10, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#contactPopupBox {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  max-height: 88vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  background: linear-gradient(175deg, #0d1a5c 0%, #020318 55%, #050a2e 100%);
  border-top: 2px solid rgba(255, 213, 79, 0.45);
  border-left: 1px solid rgba(255, 213, 79, 0.15);
  border-right: 1px solid rgba(255, 213, 79, 0.15);
  border-radius: 28px 28px 0 0;
  box-shadow:
    0 -8px 40px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 213, 79, 0.08),
    0 0 60px 4px rgba(30, 50, 175, 0.3) inset;
  animation: sheet-up 0.35s cubic-bezier(0.32, 0.72, 0, 1) both;
}

@keyframes sheet-up {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

/* drag handle */
.contact-popup-handle {
  width: 40px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  margin: 14px auto 0;
}

/* header row */
.contact-popup-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.25rem 1.25rem 0.75rem;
}

.contact-popup-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3296, #0b1145);
  border: 1.5px solid rgba(255, 213, 79, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--campaign-gold);
  box-shadow: 0 0 14px rgba(255, 213, 79, 0.25);
}

.contact-popup-header>div:nth-child(2) {
  flex: 1;
}

.contact-popup-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--campaign-gold);
  margin: 0;
  line-height: 1.2;
}

.contact-popup-header p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.contact-popup-close {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact-popup-close:hover {
  background: rgba(255, 213, 79, 0.15);
  border-color: rgba(255, 213, 79, 0.5);
  color: var(--campaign-gold);
}

/* gold divider */
.contact-popup-divider {
  height: 1px;
  margin: 0 1.25rem 1.25rem;
  background: linear-gradient(90deg, transparent, rgba(255, 213, 79, 0.35), transparent);
}

/* contact link rows */
.contact-popup-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 1.25rem;
  box-sizing: border-box;
  width: 100%;
}

.contact-popup-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  min-width: 0;
}

.contact-popup-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.contact-popup-item.blue {
  background: rgba(30, 50, 125, 0.35);
}

.contact-popup-item.blue::before {
  background: linear-gradient(135deg, rgba(180, 170, 255, 0.8), rgba(30, 25, 175, 0.5));
}

.contact-popup-item.yellow {
  background: rgba(255, 180, 0, 0.1);
}

.contact-popup-item.yellow::before {
  background: linear-gradient(135deg, rgba(255, 230, 150, 0.9), rgba(200, 130, 0, 0.6));
}

.contact-popup-item:hover,
.contact-popup-item:active {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.contact-popup-item.blue:hover {
  background: rgba(30, 50, 125, 0.55);
}

.contact-popup-item.yellow:hover {
  background: rgba(255, 180, 0, 0.18);
}

.contact-popup-item-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-popup-item-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-popup-item-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-popup-item-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--campaign-gold);
  line-height: 1;
}

.contact-popup-item-value {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
  word-break: break-all;
}

.contact-popup-item-arrow {
  width: 14px;
  height: auto;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-popup-item:hover .contact-popup-item-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* footer note */
.contact-popup-footer-text {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  padding: 1.25rem 1.25rem 1.5rem;
  margin: 0;
  line-height: 1.5;
}

.fifa-2026-page .campaign-modal-text {
  text-align: center;
  color: var(--campaign-copy);
  margin-bottom: 1.5rem;
}

.fifa-2026-page .modal-content .btn-close {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 34px;
  height: 34px;
  line-height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--campaign-gold-soft), var(--campaign-gold-strong));
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 0;
  opacity: 1;
  color: #09103d;
}

.fifa-2026-page .modal-content .btn-close i {
  color: #09103d;
}

.fifa-2026-page .modal-content .btn-yes,
.fifa-2026-page .modal-content .btn-no,
.fifa-2026-page .btnSubmit {
  min-width: 130px;
  min-height: 48px;
  border: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.fifa-2026-page .modal-content .btn-yes,
.fifa-2026-page .btnSubmit {
  color: #08103c;
  background: linear-gradient(135deg, var(--campaign-gold-soft), var(--campaign-gold-strong));
}

.fifa-2026-page .modal-content .btn-no {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.fifa-2026-page .form-group {
  margin-bottom: 1rem;
}

.fifa-2026-page .form-control {
  min-height: 52px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #fff;
}

.fifa-2026-page .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.fifa-2026-page .form-control option {
  color: #08103c;
}

.fifa-2026-page .text-danger,
.fifa-2026-page .invalid-feedback {
  color: #ff9292 !important;
}

@media (max-width: 576px) {
  body.fifa-2026-page {
    font-size: 16px;
  }

  .fifa-2026-page .container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .fifa-2026-page #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
    height: 54px;
  }

  .fifa-2026-page .campaign-landing {
    margin-top: 54px;
    padding-top: 0;
  }

  .fifa-2026-page #header .container {
    padding: 0 10px 0 0;
  }

  .fifa-2026-page #header .logo img {
    max-height: 40px;
  }

  .fifa-2026-page #header .btn-language .btn {
    height: 30px;
    padding: 0 10px;
  }

  .fifa-2026-page #header .btn-language .btn i {
    line-height: 30px;
  }

  .fifa-2026-page #header .btn-language .btn i {
    font-size: 12px;
  }
}

/* ── Tablet (≤ 991px) ───────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .fifa-2026-page .campaign-hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }

  .fifa-2026-page .campaign-hero-visual {
    min-height: 260px;
  }

  .fifa-2026-page .campaign-podium,
  .fifa-2026-page .campaign-requirement-grid,
  .fifa-2026-page .campaign-terms-grid {
    grid-template-columns: 1fr;
  }

  .fifa-2026-page .campaign-prize-card.featured {
    order: -1;
    transform: none;
  }

  .fifa-2026-page .campaign-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .fifa-2026-page .campaign-reward::after {
    display: none;
  }

  .fifa-2026-page .campaign-reward .scroll-btn {
    position: relative;
    margin: 1rem auto 0;
  }

  .fifa-2026-page .campaign-reward .scroll-btn img {
    height: 48px;
    right: 0;
  }
}

/* ── Mobile (≤ 767px) ───────────────────────────────────────────── */
@media (max-width: 767.98px) {

  /* Landing background */
  .fifa-2026-page .campaign-landing {
    background-size: contain;
    background-position: 65% top;
    /* margin-top: 0;
    padding-top: 0; */
  }

  /* Hero */
  .fifa-2026-page .campaign-hero {
    padding: 5.5rem 0 2.5rem;
  }

  .fifa-2026-page .campaign-hero-copy {
    max-width: 100%;
  }

  .fifa-2026-page .campaign-hero-visual {
    display: none;
  }

  /* Kicker pill */
  .fifa-2026-page .campaign-kicker {
    font-size: 11px;
    padding: 6px 18px;
    margin-bottom: 0.6rem;
  }

  /* Headings */
  .fifa-2026-page .campaign-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: 100%;
    margin-bottom: 0.5rem;
  }

  .fifa-2026-page .campaign-hero h2 {
    font-size: clamp(0.85rem, 3.8vw, 1.2rem);
    margin-bottom: 0.4rem;
  }

  .fifa-2026-page .campaign-hero-subtitle {
    font-size: clamp(0.5rem, 3vw, 1rem);
    margin-bottom: 0.85rem;
  }

  /* Button — inline width, smaller text, same pill shape */
  .fifa-2026-page .campaign-button {
    width: 50%;
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
    min-height: 40px;
  }

  #join .fifa-2026-page .campaign-button {
    width: 60%;
    font-size: 0.875rem;
    padding: 0.6rem 1.5rem;
    min-height: 40px;
    white-space: nowrap;
  }

  .fifa-2026-page .campaign-hero-actions {
    margin-bottom: 0;
  }

  /* Hero actions — stack vertically */
  .fifa-2026-page .campaign-hero-actions,
  .fifa-2026-page .campaign-hero-meta {
    flex-direction: column;
    align-items: stretch;
  }

  /* Hide aside on mobile — #contactPopup custom overlay handles it instead */
  .fifa-2026-page .campaign-hero-contact {
    display: none !important;
  }

  /* Section titles */
  .fifa-2026-page .campaign-section-title {
    margin-bottom: 1rem;
  }

  .fifa-2026-page .campaign-section-title h2 {
    font-size: clamp(18px, 3vw, 36px);

    margin-bottom: 0;
  }


  .fifa-2026-page .campaign-requirement,
  .fifa-2026-page .campaign-terms,
  .fifa-2026-page .campaign-cta {
    padding: 0.5rem 0;
  }

  /* Requirement — 3 columns on mobile, scaled down */
  .fifa-2026-page .campaign-requirement-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .fifa-2026-page .campaign-requirement-card {
    padding: 1.25rem 0.5rem;
    border-radius: 14px;
    box-shadow: none;
    border-width: 2px;
  }

  .fifa-2026-page .campaign-requirement-card h3 {
    font-size: clamp(1.2rem, 5.5vw, 2rem);
    margin-bottom: 0.2rem;
  }

  .fifa-2026-page .campaign-requirement-card h4 {
    font-size: clamp(1rem, 4.5vw, 1.75rem);
    margin-bottom: 0.2rem;
  }

  .fifa-2026-page .campaign-requirement-card p {
    font-size: 0.6rem;
  }

  .fifa-2026-page .campaign-requirement-card .campaign-or {
    margin: 0.35rem auto;
    width: 20px;
    font-size: 0.65rem;
  }

  .fifa-2026-page .campaign-requirement-card .campaign-or::before,
  .fifa-2026-page .campaign-requirement-card .campaign-or::after {
    width: 28px;
  }

  /* Prize cards */
  .fifa-2026-page .campaign-prize-card,
  .fifa-2026-page .campaign-prize-card.tier-two,
  .fifa-2026-page .campaign-prize-card.tier-three,
  .fifa-2026-page .campaign-prize-card.featured {
    min-height: auto;
  }

  .fifa-2026-page .campaign-prize-card {
    padding: 0 20px;
  }

  .fifa-2026-page .campaign-requirement-grid {
    gap: 1.25rem;
  }

  /* Info boxes & terms */
  .fifa-2026-page .campaign-info-box {
    padding: 1rem 1.25rem;
    margin: 0.75rem 0;
    gap: 0.75rem !important;
  }

  .fifa-2026-page .campaign-info-box img {
    height: 40px;
    flex-shrink: 0;
  }

  .fifa-2026-page .campaign-info-box h3 {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .fifa-2026-page .campaign-info-box p {
    font-size: 0.7rem;
    font-weight: 500;
  }


  .fifa-2026-page .campaign-terms-panel {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .fifa-2026-page .campaign-terms-mobile-toggle {
    display: inline-flex;
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
  }

  .fifa-2026-page .campaign-terms-list li {
    font-size: 0.8rem;
  }

  .fifa-2026-page .campaign-final-cta {
    padding: 1.25rem;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 1.25rem !important;
  }

  .fifa-2026-page .campaign-final-cta h2 {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
    margin-bottom: 0;
  }

  /* Footer */
  .fifa-2026-page #footer .footer-panel {
    padding: 1.2rem;
  }

  .fifa-2026-page .campaign-footer-logo-sm {
    height: 36px;
  }

  .fifa-2026-page .campaign-footer-caption {
    font-size: 6px;
  }

  .fifa-2026-page .campaign-footer-award-image {
    height: 24px;
  }

  .fifa-2026-page .campaign-footer-logo-lg {
    height: 40px;
  }

  .fifa-2026-page .campaign-footer-license-text {
    font-size: 7px;
  }

  .fifa-2026-page .campaign-footer-logo-xxs {
    height: 20px;
  }
}

/* ── Small mobile (≤ 430px) ─────────────────────────────────────── */
@media (max-width: 430px) {
  .fifa-2026-page .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fifa-2026-page .campaign-landing {
    background-position: 70% top;
  }

  .fifa-2026-page .campaign-hero {
    padding: 1.6em 0 0 0;
  }

  .fifa-2026-page .campaign-kicker {
    font-size: 10px;
    padding: 5px 16px;
  }

  .fifa-2026-page .campaign-kicker::before {
    padding: 2px;
  }

  .fifa-2026-page .campaign-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .fifa-2026-page .campaign-hero h2 {
    font-size: clamp(0.5rem, 3vw, 1.2rem);
  }

  .fifa-2026-page .campaign-hero-contact,
  .fifa-2026-page .campaign-info-box,
  .fifa-2026-page .campaign-terms-panel,
  .fifa-2026-page .campaign-final-cta {
    border-radius: 18px;
  }

  .fifa-2026-page .campaign-hero-contact,
  .fifa-2026-page .campaign-info-box,
  .fifa-2026-page .campaign-terms-panel {
    padding: 1rem;
  }

  .campaign-hero-actions {
    width: 100%;

  }

  .fifa-2026-page .campaign-hero .campaign-button-primary {
    font-size: 10px;
    padding: 0;
    min-height: 24px;
  }

  .fifa-2026-page .campaign-requirement-card {
    padding: 1rem 0.35rem;
  }

  .fifa-2026-page .campaign-requirement-card h3 {
    font-size: clamp(1rem, 5vw, 1.5rem);
  }

  .fifa-2026-page .campaign-requirement-card h4 {
    font-size: clamp(0.9rem, 4vw, 1.35rem);
  }

  .fifa-2026-page .campaign-contact-list a {
    gap: 0.55rem;
    font-size: 1rem;
  }
}

/* ── iPhone SE / small (≤ 375px) ───────────────────────────────── */
@media (max-width: 375px) {
  .fifa-2026-page .campaign-landing {
    /* background-position: 72% top; */
    background-size: contain;
    margin-top: 44px;
    padding-top: 10px;
  }

  .fifa-2026-page .campaign-hero h1 {
    font-size: clamp(1.6rem, 8vw, 2.5rem);
  }

  .fifa-2026-page .campaign-prize-card {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .fifa-2026-page .campaign-requirement-card {
    padding: 0.85rem 0.25rem;
  }

  .fifa-2026-page .campaign-requirement-card h3 {
    font-size: clamp(0.9rem, 4.5vw, 1.2rem);
  }

  .fifa-2026-page .campaign-requirement-card h4 {
    font-size: clamp(0.8rem, 3.8vw, 1.1rem);
  }
}

/* ── Very small (≤ 320px) ───────────────────────────────────────── */
@media (max-width: 320px) {
  .fifa-2026-page .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fifa-2026-page .campaign-landing {
    background-position: 74% top;
  }

  .fifa-2026-page .campaign-hero h1 {
    font-size: clamp(1.6rem, 9vw, 2rem);
  }

  .fifa-2026-page .campaign-kicker {
    font-size: 10px;
    padding: 6px 12px;
  }
}

@media (min-width: 1200px) {
  body.fifa-2026-page {
    font-size: 16px;
  }

  .fifa-2026-page #header .logo img {
    max-height: 33px;
  }

  .fifa-2026-page #header .btn-language .btn {
    height: 33px;
  }

  .fifa-2026-page #footer {
    padding-top: 55px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1400px) {
  body.fifa-2026-page {
    font-size: 18px;
  }

  .fifa-2026-page #header .logo img {
    max-height: 60px;
  }

  .fifa-2026-page #header .btn-language .btn {
    height: 40px;
    line-height: 60px;
  }
}

/* ── iOS Safari only（放在末尾确保覆盖前面所有 media query）──────── */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 991.98px) {
    .fifa-2026-page #header {
      padding-top: env(safe-area-inset-top);
      height: auto;
    }

    .fifa-2026-page .campaign-landing {
      background-size: contain !important;
      background-position: center top !important;
      background-repeat: no-repeat !important;
      margin-top: calc(env(safe-area-inset-top) + 44px) !important;
      padding-top: 0 !important;
    }

    .fifa-2026-page .campaign-button {
      width: 50%;
    }

  }
}