/* ===== CSS VARIABLES ===== */
    :root {
      --bg: #050505;
      --bg-card: #0a0a0a;
      --fg: #f5f5f5;
      --fg-muted: #888888;
      --gold: #c9a962;
      --gold-light: #e8d5a3;
      --gold-dark: #a08040;
      --gold-2: #d4af37;
      --border: #2a2a2a;
      --secondary: #1a1a1a;
      --radius: 1rem;
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--fg);
      overflow-x: hidden;
      line-height: 1.6;
    }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    input, select, textarea { font-family: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; }

    /* ===== ANIMATIONS ===== */
    @keyframes float {
      0%   { transform: translateY(0px) rotate(0deg) scale(1); }
      25%  { transform: translateY(-10px) rotate(0.5deg) scale(1.01); }
      50%  { transform: translateY(-18px) rotate(0deg) scale(1.02); }
      75%  { transform: translateY(-8px) rotate(-0.5deg) scale(1.01); }
      100% { transform: translateY(0px) rotate(0deg) scale(1); }
    }
    @keyframes trophy-glow-pulse {
      0%, 100% { opacity: .5; transform: scale(1) translateY(0); filter: blur(60px); }
      50%       { opacity: .9; transform: scale(1.2) translateY(-12px); filter: blur(90px); }
    }
    @keyframes trophy-shine {
      0%   { filter: drop-shadow(0 20px 40px rgba(201,169,98,.3)) brightness(1); }
      40%  { filter: drop-shadow(0 30px 70px rgba(201,169,98,.7)) brightness(1.08); }
      60%  { filter: drop-shadow(0 35px 80px rgba(232,213,163,.6)) brightness(1.12); }
      100% { filter: drop-shadow(0 20px 40px rgba(201,169,98,.3)) brightness(1); }
    }
    @keyframes ring-spin         { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
    @keyframes ring-spin-reverse { from { transform: rotate(0deg); }   to { transform: rotate(-360deg); } }
    @keyframes particle-rise {
      0%   { opacity: 0; transform: translateY(0) scale(0); }
      20%  { opacity: 1; }
      80%  { opacity: .5; }
      100% { opacity: 0; transform: translateY(-90px) scale(1.8); }
    }
    @keyframes glow {
      0%, 100% { box-shadow: 0 0 20px rgba(201,169,98,.3), 0 0 40px rgba(201,169,98,.1); }
      50% { box-shadow: 0 0 30px rgba(201,169,98,.5), 0 0 60px rgba(201,169,98,.2); }
    }
    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeLeft {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes fadeRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideDown {
      from { opacity: 0; max-height: 0; }
      to { opacity: 1; max-height: 500px; }
    }

    .animate-float { animation: float 7s cubic-bezier(0.45,0.05,0.55,0.95) infinite; }
    .animate-glow  { animation: glow 3s ease-in-out infinite; }

    /* ===== UTILITY ===== */
    .gold-text {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .glass-card {
      background: linear-gradient(135deg, rgba(20,20,20,.9) 0%, rgba(10,10,10,.8) 100%);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(201,169,98,.2);
      transition: border-color .3s, box-shadow .3s;
    }
    .glass-card:hover {
      border-color: rgba(201,169,98,.4);
      box-shadow: 0 0 30px rgba(201,169,98,.1);
    }
    .gold-divider {
      width: 96px; height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      border-radius: 2px; margin: 1.5rem auto 0;
    }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
      text-align: center;
    }
    .btn-gold {
      display: inline-block;
      padding: .9rem 2rem;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      color: var(--bg);
      font-weight: 600;
      border-radius: 9999px;
      transition: box-shadow .3s, transform .2s;
      cursor: pointer;
    }
    .btn-gold:hover {
      box-shadow: 0 0 40px rgba(201,169,98,.5);
      transform: scale(1.04);
    }
    .btn-outline {
      display: inline-block;
      padding: .9rem 2rem;
      border: 2px solid var(--gold);
      color: var(--gold);
      font-weight: 600;
      border-radius: 9999px;
      transition: background .3s;
    }
    .btn-outline:hover { background: rgba(201,169,98,.1); }

    /* Scroll reveal */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .6s ease, transform .6s ease; }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .6s ease, transform .6s ease; }
    .reveal-right.visible { opacity: 1; transform: none; }

    /* Stagger delays */
    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .2s; }
    .delay-3 { transition-delay: .3s; }
    .delay-4 { transition-delay: .4s; }
    .delay-5 { transition-delay: .5s; }
    .delay-6 { transition-delay: .6s; }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #0a0a0a; }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

    /* ===========================
       NAVIGATION
    =========================== */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      transition: background .3s, border-color .3s;
    }
    #navbar.scrolled {
      background: rgba(5,5,5,.95);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(201,169,98,.2);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 210px;
    }
    .nav-left-group { display: flex; align-items: center; gap: 1rem; }
    .nav-right-group { display: flex; align-items: center; gap: 1rem; }
    .nav-partner-block {
      display: flex; flex-direction: column; align-items: center; gap: 3px;
    }
    .nav-partner-label {
      font-size: .6rem; letter-spacing: .08em; text-transform: uppercase;
      color: rgba(201,169,98,.85); font-weight: 500; white-space: nowrap;
    }
    .nav-partner-logo {
      height: 100px;
      width: auto;
      object-fit: contain;
      background: rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 6px 10px;
    }
    .nav-choice-logo { height: 100px; }
    .nav-logo { display: flex; align-items: center; gap: .75rem; }
    .nav-logo svg { width: 48px; height: 48px; }
    .nav-logo-text p:first-child { font-size: .85rem; font-weight: 600; }
    .nav-logo-text p:last-child { font-size: .7rem; color: rgba(201,169,98,.7); }
    .nav-links { display: flex; align-items: center; gap: 2rem; }
    .nav-links a {
      font-size: .875rem; color: rgba(245,245,245,.8);
      position: relative; padding-bottom: 2px;
      transition: color .3s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -2px; left: 0;
      width: 0; height: 2px; background: var(--gold);
      transition: width .3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta { padding: .6rem 1.5rem; font-size: .875rem; }
    .hamburger { display: none; padding: .5rem; color: var(--gold); background: none; border: none; cursor: pointer; }
    .mobile-menu {
      display: none; flex-direction: column;
      background: rgba(5,5,5,.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(201,169,98,.2);
      padding: 1rem 1.5rem 1.5rem;
      gap: 1rem;
    }
    .mobile-menu a { color: rgba(245,245,245,.8); padding: .5rem 0; transition: color .3s; }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .btn-gold { text-align: center; margin-top: .5rem; }

    @media (max-width: 1023px) {
      .nav-links, .nav-cta { display: none; }
      .nav-partner-logo { height: 40px; }
      .nav-choice-logo { height: 34px; }
      .nav-partner-label { font-size: .5rem; }
      .hamburger { display: block; }
    }

    /* ===========================
       HERO SECTION
    =========================== */
    #home {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 60%, #0a0a0a 100%);
    }
    .hero-glow-1 {
      position: absolute; top: 25%; left: 25%;
      width: 384px; height: 384px;
      background: rgba(201,169,98,.1); border-radius: 50%;
      filter: blur(120px);
    }
    .hero-glow-2 {
      position: absolute; bottom: 25%; right: 25%;
      width: 384px; height: 384px;
      background: rgba(201,169,98,.05); border-radius: 50%;
      filter: blur(150px);
    }
    .hero-grid {
      position: absolute; inset: 0; opacity: .02;
      background-image: linear-gradient(#c9a962 1px, transparent 1px),
                        linear-gradient(90deg, #c9a962 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .hero-content {
      position: relative; z-index: 10;
      width: 100%; padding-top: 8rem; padding-bottom: 5rem;
    }
    .hero-grid-layout {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: center;
    }
    .hero-left { animation: fadeLeft .8s ease forwards; }
    .hero-title {
      font-size: clamp(2rem, 5vw, 3.75rem);
      font-weight: 700; line-height: 1.15; margin-bottom: .5rem;
    }
    .hero-edition {
      font-size: clamp(1rem, 2.5vw, 1.5rem);
      color: var(--gold); font-weight: 300; margin-bottom: 1.5rem;
    }
    .hero-tagline {
      font-size: clamp(.9rem, 1.8vw, 1.15rem);
      color: rgba(245,245,245,.7); font-style: italic; font-weight: 300;
      max-width: 480px; margin-bottom: 1.5rem;
    }
    .hero-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
    .hero-meta span {
      display: flex; align-items: center; gap: .5rem;
      font-size: .9rem; color: rgba(245,245,245,.8);
    }
    .hero-meta svg { color: var(--gold); flex-shrink: 0; }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
    .hero-right {
      display: flex; justify-content: center;
      animation: fadeRight .8s ease forwards;
    }
    .trophy-wrap {
      position: relative; width: 100%; max-width: 400px; aspect-ratio: 4/5;
    }
    .trophy-wrap img {
      animation: trophy-shine 6s ease-in-out infinite;
      will-change: filter;
    }
    .trophy-glow {
      position: absolute; inset: -10%; border-radius: 50%;
      background: radial-gradient(ellipse, rgba(201,169,98,.55) 0%, rgba(212,175,55,.25) 45%, transparent 75%);
      filter: blur(55px); z-index: -1;
      animation: trophy-glow-pulse 7s ease-in-out infinite;
    }
    /* Decorative spinning rings */
    .trophy-ring {
      position: absolute; border-radius: 50%; border-style: solid;
      pointer-events: none; z-index: -1;
    }
    .trophy-ring-1 {
      width: 110%; height: 110%; top: -5%; left: -5%;
      border-width: 1px; border-color: rgba(201,169,98,.25) transparent rgba(201,169,98,.1) transparent;
      animation: ring-spin 12s linear infinite;
    }
    .trophy-ring-2 {
      width: 125%; height: 125%; top: -12.5%; left: -12.5%;
      border-width: 1px; border-color: transparent rgba(232,213,163,.15) transparent rgba(201,169,98,.2);
      animation: ring-spin-reverse 18s linear infinite;
    }
    /* Gold particles */
    .trophy-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
    .trophy-particles span {
      position: absolute; border-radius: 50%;
      background: radial-gradient(circle, #e8d5a3, #c9a962);
      animation: particle-rise ease-in-out infinite;
    }
    .trophy-particles span:nth-child(1) { width:6px; height:6px; left:20%; bottom:15%; animation-duration:3.2s; animation-delay:0s; }
    .trophy-particles span:nth-child(2) { width:4px; height:4px; left:75%; bottom:20%; animation-duration:4s;   animation-delay:.8s; }
    .trophy-particles span:nth-child(3) { width:5px; height:5px; left:50%; bottom:10%; animation-duration:3.6s; animation-delay:1.5s; }
    .trophy-particles span:nth-child(4) { width:3px; height:3px; left:35%; bottom:25%; animation-duration:4.4s; animation-delay:2.2s; }
    .trophy-particles span:nth-child(5) { width:5px; height:5px; left:65%; bottom:18%; animation-duration:3s;   animation-delay:.4s; }
    .hero-wave {
      position: absolute; bottom: 0; left: 0; right: 0;
    }
    .hero-line {
      position: absolute; bottom: 40px; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,169,98,.5), transparent);
    }

    @media (max-width: 1023px) {
      .hero-grid-layout { grid-template-columns: 1fr; }
      .hero-right { order: -1; max-width: 320px; margin: 0 auto; }
      .trophy-wrap { max-width: 280px; }
    }

    /* ===========================
       SECTION SHARED
    =========================== */
    .section-py { padding: 6rem 0; }
    .section-header { text-align: center; margin-bottom: 4rem; }
    .section-header p { color: rgba(245,245,245,.6); max-width: 640px; margin: 1rem auto 0; }
    .sep-line {
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,169,98,.3), transparent);
    }

    /* ===========================
       ABOUT SECTION
    =========================== */
    #about { position: relative; padding: 6rem 0; overflow: hidden; }
    #about .about-bg {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, #0a0a0a 0%, var(--bg) 50%, #0a0a0a 100%);
    }
    .about-text {
      max-width: 800px; margin: 0 auto 5rem;
      text-align: center;
      font-size: clamp(.95rem, 1.5vw, 1.15rem);
      color: rgba(245,245,245,.8); line-height: 1.9;
    }
    .about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .about-card {
      border-radius: var(--radius); padding: 2rem;
      position: relative; overflow: hidden;
    }
    .about-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px; background: linear-gradient(90deg, var(--gold), transparent);
      border-radius: var(--radius) var(--radius) 0 0;
    }
    .about-icon-wrap {
      width: 56px; height: 56px; border-radius: 12px;
      background: rgba(201,169,98,.1);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1rem;
    }
    .about-icon-wrap svg { color: var(--gold); }
    .about-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: .75rem; }
    .about-card p { color: rgba(245,245,245,.7); line-height: 1.8; }

    @media (max-width: 767px) { .about-cards { grid-template-columns: 1fr; } }

    /* ===========================
       EVENT DETAILS
    =========================== */
    #event-details { position: relative; padding: 6rem 0; overflow: hidden; }
    #event-details .ed-bg {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, #0a0a0a 0%, var(--bg) 100%);
    }
    .ed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .ed-card {
      border-radius: var(--radius); padding: 2rem;
      text-align: center;
    }
    .ed-icon-wrap {
      width: 64px; height: 64px; border-radius: 16px;
      background: rgba(201,169,98,.1);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      transition: background .3s;
    }
    .ed-card:hover .ed-icon-wrap { background: rgba(201,169,98,.2); }
    .ed-icon-wrap svg { color: var(--gold); }
    .ed-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .5rem; }
    .ed-card .ed-name { color: var(--gold); font-weight: 500; }
    .ed-card .ed-sub { color: rgba(245,245,245,.5); font-size: .875rem; margin-top: .25rem; }

    @media (max-width: 767px) { .ed-grid { grid-template-columns: 1fr; } }

    /* ===========================
       OBJECTIVES
    =========================== */
    #objectives { position: relative; padding: 6rem 0; overflow: hidden; }
    #objectives .obj-bg {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 50%, var(--bg) 100%);
    }
    .obj-glow-l {
      position: absolute; top: 25%; left: 0;
      width: 288px; height: 288px;
      background: rgba(201,169,98,.05); border-radius: 50%; filter: blur(100px);
    }
    .obj-glow-r {
      position: absolute; bottom: 25%; right: 0;
      width: 288px; height: 288px;
      background: rgba(201,169,98,.05); border-radius: 50%; filter: blur(100px);
    }
    .obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .obj-card {
      border-radius: var(--radius); padding: 1.5rem;
    }
    .obj-inner { display: flex; align-items: flex-start; gap: 1rem; }
    .obj-icon {
      width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
      background: rgba(201,169,98,.1);
      display: flex; align-items: center; justify-content: center;
      transition: background .3s;
    }
    .obj-card:hover .obj-icon { background: rgba(201,169,98,.2); }
    .obj-icon svg { color: var(--gold); }
    .obj-card h3 {
      font-size: 1rem; font-weight: 600; margin-bottom: .4rem;
      transition: color .3s;
    }
    .obj-card:hover h3 { color: var(--gold); }
    .obj-card p { color: rgba(245,245,245,.6); font-size: .875rem; line-height: 1.7; }

    @media (max-width: 1023px) { .obj-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 599px) { .obj-grid { grid-template-columns: 1fr; } }

    /* ===========================
       HIGHLIGHTS
    =========================== */
    #highlights { position: relative; padding: 6rem 0; overflow: hidden; }
    #highlights .hl-bg {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 100%);
    }
    .hl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .hl-card {
      border-radius: var(--radius); padding: 2rem;
      text-align: center; position: relative; overflow: hidden;
      border: 1px solid rgba(201,169,98,.2);
      transition: border-color .3s;
    }
    .hl-card::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(201,169,98,.05); opacity: 0;
      transition: opacity .3s;
    }
    .hl-card:hover { border-color: rgba(201,169,98,.4); }
    .hl-card:hover::before { opacity: 1; }
    .hl-icon-wrap {
      width: 80px; height: 80px; border-radius: 16px;
      background: linear-gradient(135deg, rgba(201,169,98,.2), rgba(201,169,98,.05));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      transition: transform .3s;
    }
    .hl-card:hover .hl-icon-wrap { transform: scale(1.1); }
    .hl-icon-wrap svg { color: var(--gold); }
    .hl-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .75rem; transition: color .3s; }
    .hl-card:hover h3 { color: var(--gold); }
    .hl-card p { color: rgba(245,245,245,.6); line-height: 1.8; }

    @media (max-width: 767px) { .hl-grid { grid-template-columns: 1fr; } }

    /* ===========================
       TARGET AUDIENCE
    =========================== */
    #target { position: relative; padding: 6rem 0; overflow: hidden; }
    #target .ta-bg {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, #0a0a0a 0%, var(--bg) 50%, #0a0a0a 100%);
    }
    .ta-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1.5rem;
    }
    .ta-card {
      border-radius: var(--radius); padding: 1.5rem;
      text-align: center;
    }
    .ta-icon {
      width: 64px; height: 64px; border-radius: 12px;
      background: rgba(201,169,98,.1);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1rem;
      transition: background .3s, transform .3s;
    }
    .ta-card:hover .ta-icon { background: rgba(201,169,98,.2); transform: scale(1.1); }
    .ta-icon svg { color: var(--gold); }
    .ta-card p { font-size: .875rem; font-weight: 500; color: rgba(245,245,245,.8); transition: color .3s; }
    .ta-card:hover p { color: var(--gold); }

    @media (max-width: 1023px) { .ta-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 599px) { .ta-grid { grid-template-columns: repeat(2,1fr); } }

    /* ===========================
       AWARD CATEGORIES
    =========================== */
    #categories { position: relative; padding: 6rem 0; overflow: hidden; }
    #categories .cat-bg {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, #0a0a0a 0%, var(--bg) 100%);
    }
    .cat-glow-r {
      position: absolute; top: 33%; right: 0;
      width: 384px; height: 384px;
      background: rgba(201,169,98,.05); border-radius: 50%; filter: blur(150px);
    }
    .cat-glow-l {
      position: absolute; bottom: 33%; left: 0;
      width: 384px; height: 384px;
      background: rgba(201,169,98,.05); border-radius: 50%; filter: blur(150px);
    }
    .cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
    .cat-card { border-radius: var(--radius); overflow: hidden; }
    .cat-header {
      padding: 1.5rem;
      border-bottom: 1px solid rgba(201,169,98,.2);
      display: flex; align-items: center; gap: 1rem;
    }
    .cat-icon {
      width: 56px; height: 56px; border-radius: 12px;
      background: rgba(201,169,98,.1);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background .3s;
    }
    .cat-card:hover .cat-icon { background: rgba(201,169,98,.2); }
    .cat-icon svg { color: var(--gold); }
    .cat-header h3 { font-size: 1.1rem; font-weight: 600; }
    .cat-body { padding: 1.5rem; }
    .cat-body li {
      display: flex; align-items: center; gap: .75rem;
      color: rgba(245,245,245,.7); font-size: .875rem;
      padding: .4rem 0;
      transition: color .3s;
    }
    .cat-card:hover .cat-body li { color: rgba(245,245,245,.9); }
    .cat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

    /* Mobile accordion */
    .cat-toggle {
      width: 100%; padding: 1rem 1.5rem;
      display: none; align-items: center; justify-content: space-between;
      color: rgba(245,245,245,.7); font-size: .875rem;
      background: none; border: none; cursor: pointer;
    }
    .cat-toggle svg { color: var(--gold); }
    .cat-accordion { display: none; }

    @media (max-width: 1023px) { .cat-grid { grid-template-columns: 1fr; } }
    @media (max-width: 599px) {
      .cat-body { display: none; }
      .cat-toggle { display: flex; }
      .cat-accordion.open { display: block; }
    }

    /* ===========================
       STRATEGIC PARTNER
    =========================== */
    #strategic { position: relative; padding: 5rem 0; overflow: hidden; }
    #strategic .sp-bg {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 50%, var(--bg) 100%);
    }
    .sp-card {
      display: inline-flex; flex-direction: column; align-items: center; gap: 1.5rem;
      border-radius: var(--radius); padding: 3rem 4rem;
    }
    .sp-card p:first-of-type { font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; }
    .sp-card p:last-of-type { color: rgba(245,245,245,.6); font-size: .875rem; }

    /* ===========================
       SPONSORSHIP
    =========================== */
    #sponsors { position: relative; padding: 6rem 0; overflow: hidden; }
    #sponsors .spon-bg {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 50%, var(--bg) 100%);
    }
    .spon-table-wrap { border-radius: var(--radius); overflow: hidden; }
    .spon-table { width: 100%; border-collapse: collapse; }
    .spon-table thead tr { border-bottom: 1px solid rgba(201,169,98,.2); }
    .spon-table th { padding: 1.5rem; }
    .spon-table th:first-child { text-align: left; color: rgba(245,245,245,.6); font-weight: 500; }
    .spon-table th:not(:first-child) { text-align: center; }
    .pkg-badge {
      display: inline-block; padding: .5rem 1.5rem;
      border-radius: 9999px; font-weight: 600; color: var(--bg);
      font-size: .875rem;
    }
    .pkg-strategic { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
    .pkg-platinum { background: linear-gradient(90deg, #e5e4e2, #b0b0b0); }
    .pkg-diamond { background: linear-gradient(90deg, #b9f2ff, #7dd3fc); }
    .pkg-gold { background: linear-gradient(90deg, var(--gold), #a08040); }
    .spon-table tbody tr:nth-child(even) { background: rgba(10,10,10,.5); }
    .spon-table td { padding: 1.25rem 1.5rem; }
    .spon-table td:first-child { color: rgba(245,245,245,.8); }
    .spon-table td:not(:first-child) { text-align: center; color: rgba(245,245,245,.7); }
    .check-icon { color: var(--gold); display: inline-block; }
    .minus-icon { color: rgba(245,245,245,.3); display: inline-block; }

    /* Mobile sponsorship cards */
    .spon-cards { display: none; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
    .spon-card { border-radius: var(--radius); padding: 1.5rem; }
    .spon-card li {
      display: flex; align-items: center; justify-content: space-between;
      padding: .6rem 0; font-size: .875rem;
    }
    .spon-card li span:first-child { color: rgba(245,245,245,.6); }
    .spon-card li span:last-child { color: rgba(245,245,245,.8); }
    .spon-cta { text-align: center; margin-top: 3rem; }

    @media (max-width: 1023px) {
      .spon-table-wrap { display: none; }
      .spon-cards { display: grid; }
    }
    @media (max-width: 599px) { .spon-cards { grid-template-columns: 1fr; } }

    /* ===========================
       REGISTRATION
    =========================== */
    #register { position: relative; padding: 6rem 0; overflow: hidden; }
    #register .reg-bg {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, #0a0a0a 0%, var(--bg) 50%, #0a0a0a 100%);
    }
    .reg-glow {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 600px; height: 600px;
      background: rgba(201,169,98,.1); border-radius: 50%; filter: blur(150px);
    }
    .reg-form-wrap { max-width: 800px; margin: 0 auto; border-radius: var(--radius); padding: 3rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
    .form-group { margin-bottom: 1.5rem; }
    .form-group:last-of-type { margin-bottom: 0; }
    .form-group label {
      display: block; font-size: .875rem; font-weight: 500;
      color: rgba(245,245,245,.8); margin-bottom: .5rem;
    }
    .form-group input {
      width: 100%; padding: .75rem 1rem;
      background: #0a0a0a; border: 1px solid rgba(201,169,98,.2);
      border-radius: 12px; color: var(--fg);
      font-size: .9rem;
      transition: border-color .3s, box-shadow .3s;
      outline: none;
    }
    .form-group input::placeholder { color: rgba(245,245,245,.3); }
    .form-group input:focus {
      border-color: rgba(201,169,98,.5);
      box-shadow: 0 0 0 1px rgba(201,169,98,.5);
    }
    .form-group textarea {
      width: 100%; padding: .75rem 1rem;
      background: #0a0a0a; border: 1px solid rgba(201,169,98,.2);
      border-radius: 12px; color: var(--fg);
      font-size: .9rem; resize: vertical; min-height: 110px;
      transition: border-color .3s, box-shadow .3s;
      outline: none; font-family: inherit; line-height: 1.6;
    }
    .form-group textarea::placeholder { color: rgba(245,245,245,.3); }
    .form-group textarea:focus {
      border-color: rgba(201,169,98,.5);
      box-shadow: 0 0 0 1px rgba(201,169,98,.5);
    }

    /* Phone input with country selector */
    .phone-input-wrap {
      display: flex; align-items: stretch; position: relative;
      background: #0a0a0a; border: 1px solid rgba(201,169,98,.2);
      border-radius: 12px; overflow: visible;
      transition: border-color .3s, box-shadow .3s;
    }
    .phone-input-wrap:focus-within {
      border-color: rgba(201,169,98,.5);
      box-shadow: 0 0 0 1px rgba(201,169,98,.5);
    }
    .phone-flag-select {
      display: flex; align-items: center; gap: .4rem;
      padding: .75rem .9rem; cursor: pointer; user-select: none;
      border-right: 1px solid rgba(201,169,98,.15);
      flex-shrink: 0; position: relative;
      transition: background .2s;
    }
    .phone-flag-select:hover { background: rgba(201,169,98,.05); }
    .phone-flag { font-size: 1.2rem; line-height: 1; }
    .phone-code { font-size: .875rem; font-weight: 500; color: var(--gold); white-space: nowrap; }
    .phone-chevron { color: rgba(245,245,245,.4); flex-shrink: 0; transition: transform .2s; }
    .phone-flag-select.open .phone-chevron { transform: rotate(180deg); }
    .phone-number-input {
      flex: 1; padding: .75rem 1rem;
      background: transparent; border: none;
      color: var(--fg); font-size: .9rem; outline: none;
      font-family: inherit;
    }
    .phone-number-input::placeholder { color: rgba(245,245,245,.3); }

    /* Country dropdown */
    .country-dropdown {
      display: none; position: absolute;
      top: calc(100% + 6px); left: 0;
      width: 300px; max-height: 280px;
      background: #111; border: 1px solid rgba(201,169,98,.25);
      border-radius: 12px; overflow: hidden;
      z-index: 999; box-shadow: 0 16px 48px rgba(0,0,0,.6);
      flex-direction: column;
    }
    .country-dropdown.open { display: flex; }
    .country-search-wrap {
      display: flex; align-items: center; gap: .5rem;
      padding: .6rem .9rem; border-bottom: 1px solid rgba(201,169,98,.12);
      flex-shrink: 0;
    }
    .country-search-wrap svg { color: rgba(245,245,245,.35); flex-shrink: 0; }
    .country-search-wrap input {
      flex: 1; background: transparent; border: none; outline: none;
      color: var(--fg); font-size: .875rem; font-family: inherit;
    }
    .country-search-wrap input::placeholder { color: rgba(245,245,245,.3); }
    #countryList {
      overflow-y: auto; flex: 1;
      scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
    }
    #countryList li {
      display: flex; align-items: center; gap: .75rem;
      padding: .6rem 1rem; cursor: pointer; font-size: .875rem;
      transition: background .15s;
    }
    #countryList li:hover { background: rgba(201,169,98,.08); }
    #countryList li.active { background: rgba(201,169,98,.12); color: var(--gold); }
    #countryList li .cl-flag { font-size: 1.1rem; flex-shrink: 0; }
    #countryList li .cl-name { flex: 1; color: rgba(245,245,245,.8); }
    #countryList li .cl-code { color: var(--gold); font-size: .8rem; font-weight: 500; }
    #countryList li.active .cl-name { color: var(--gold); }
    @media (max-width: 400px) { .country-dropdown { width: 260px; } }
    .role-selector {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
      margin-bottom: 2rem;
    }
    .role-option {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.25rem; border-radius: 14px; cursor: pointer;
      border: 1.5px solid rgba(201,169,98,.2);
      background: rgba(10,10,10,.6);
      transition: border-color .25s, background .25s, box-shadow .25s;
      position: relative;
    }
    .role-option:hover {
      border-color: rgba(201,169,98,.45);
      background: rgba(201,169,98,.05);
    }
    .role-option.selected {
      border-color: var(--gold);
      background: rgba(201,169,98,.08);
      box-shadow: 0 0 24px rgba(201,169,98,.15);
    }
    .role-icon {
      width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
      background: rgba(201,169,98,.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      transition: background .25s;
    }
    .role-option.selected .role-icon { background: rgba(201,169,98,.2); }
    .role-info { flex: 1; }
    .role-title {
      font-weight: 600; font-size: .95rem; margin-bottom: .3rem;
      transition: color .25s;
    }
    .role-option.selected .role-title { color: var(--gold); }
    .role-desc { font-size: .78rem; color: rgba(245,245,245,.5); line-height: 1.5; }
    .role-check {
      width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
      border: 1.5px solid rgba(201,169,98,.3);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); opacity: 0;
      transition: opacity .25s, background .25s;
      margin-top: 2px;
    }
    .role-option.selected .role-check {
      opacity: 1; background: rgba(201,169,98,.2);
      border-color: var(--gold);
    }
    @media (max-width: 599px) { .role-selector { grid-template-columns: 1fr; } }
    .form-checkbox { display: flex; align-items: flex-start; gap: .75rem; margin: 1.5rem 0; }
    .form-checkbox input[type="checkbox"] {
      width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
      accent-color: var(--gold); cursor: pointer;
    }
    .form-checkbox label { font-size: .875rem; color: rgba(245,245,245,.6); cursor: pointer; }
    .form-checkbox label span { color: var(--gold); }
    .btn-submit {
      width: 100%; padding: 1rem;
      border-radius: 12px; font-size: 1rem; font-weight: 600;
      display: flex; align-items: center; justify-content: center; gap: .5rem;
      cursor: pointer; border: none;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      color: var(--bg);
      transition: box-shadow .3s, transform .2s;
    }
    .btn-submit:hover:not(:disabled) {
      box-shadow: 0 0 40px rgba(201,169,98,.5);
      transform: scale(1.02);
    }
    .btn-submit:disabled {
      background: #1a1a1a; color: rgba(245,245,245,.3); cursor: not-allowed;
    }
    .success-state { text-align: center; padding: 4rem 0; }
    .success-icon {
      width: 80px; height: 80px; border-radius: 50%;
      background: rgba(201,169,98,.2);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
    }
    .success-icon svg { color: var(--gold); }
    .success-state h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
    .success-state p { color: rgba(245,245,245,.6); }

    @media (max-width: 599px) {
      .form-row { grid-template-columns: 1fr; }
      .reg-form-wrap { padding: 2rem 1.5rem; }
    }

    /* ===========================
       FOOTER
    =========================== */
    footer { position: relative; padding-top: 5rem; padding-bottom: 2rem; overflow: hidden; }
    footer .foot-bg {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
    }
    .foot-cta {
      position: relative; border-radius: 1.5rem; overflow: hidden;
      margin-bottom: 5rem;
    }
    .foot-cta-bg {
      position: absolute; inset: 0;
      background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
    }
    .foot-cta-inner {
      position: relative; z-index: 10;
      padding: 4rem 2rem; text-align: center;
    }
    .foot-cta h3 {
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      font-weight: 700; color: var(--bg); margin-bottom: 1rem;
    }
    .foot-cta p { color: rgba(5,5,5,.75); margin-bottom: 2rem; }
    .foot-cta .btn-dark {
      display: inline-block; padding: 1rem 2.5rem;
      background: var(--bg); color: var(--gold);
      font-weight: 600; border-radius: 9999px;
      transition: background .3s, transform .2s;
    }
    .foot-cta .btn-dark:hover { background: rgba(5,5,5,.85); transform: scale(1.04); }
    .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .foot-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
    .foot-brand svg { width: 48px; height: 48px; }
    .foot-brand .foot-brand-text p:first-child { font-weight: 600; }
    .foot-brand .foot-brand-text p:last-child { font-size: .7rem; color: rgba(201,169,98,.7); }
    .foot-desc { color: rgba(245,245,245,.6); font-size: .875rem; line-height: 1.8; max-width: 400px; margin-bottom: 1.5rem; }
    .social-links { display: flex; gap: 1rem; }
    .social-link {
      width: 40px; height: 40px; border-radius: 10px;
      background: #1a1a1a; border: 1px solid rgba(201,169,98,.2);
      display: flex; align-items: center; justify-content: center;
      color: rgba(245,245,245,.6);
      transition: color .3s, border-color .3s;
    }
    .social-link:hover { color: var(--gold); border-color: rgba(201,169,98,.4); }
    .foot-col h4 { font-weight: 600; margin-bottom: 1.5rem; }
    .foot-col ul li { margin-bottom: .75rem; }
    .foot-col ul li a { color: rgba(245,245,245,.6); font-size: .875rem; transition: color .3s; }
    .foot-col ul li a:hover { color: var(--gold); }
    .foot-contact li { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; color: rgba(245,245,245,.6); font-size: .875rem; }
    .foot-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .foot-bottom {
      padding-top: 2rem; border-top: 1px solid rgba(201,169,98,.1);
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
      font-size: .875rem; color: rgba(245,245,245,.4);
    }
    .foot-bottom a { color: rgba(245,245,245,.4); transition: color .3s; }
    .foot-bottom a:hover { color: var(--gold); }
    .foot-bottom-links { display: flex; gap: 1.5rem; }

    /* Choice Partner Section in Footer */
    .foot-choice-section {
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(201,169,98,.15);
      display: flex;
      justify-content: center;
    }
    .foot-choice-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
      text-align: center;
    }
    .foot-choice-label {
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(201,169,98,.7);
      font-weight: 500;
    }
    .foot-choice-logo {
      height: 200px;
      width: auto;
      object-fit: contain;
      opacity: .95;
      transition: opacity .3s, transform .3s;
    }
    .foot-choice-logo:hover {
      opacity: 1;
      transform: scale(1.04);
    }
    .foot-choice-btn {
      margin-top: .5rem;
      font-size: .875rem;
      padding: .75rem 1.75rem;
      letter-spacing: .03em;
    }

    @media (max-width: 767px) {
      .foot-grid { grid-template-columns: 1fr; }
      .foot-choice-logo { height: 48px; }
      .foot-choice-btn { font-size: .8rem; padding: .65rem 1.25rem; }
    }
/* ===== HERO PARTNER LOGOS ===== */
.hero-partners {
  margin-top: 0; margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-partners-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,169,98,0.6);
  font-weight: 500;
}
.hero-partners-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero-partner-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,169,98,0.15);
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.hero-partner-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,169,98,0.4);
  transform: translateY(-3px);
}
.hero-partner-item img {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.hero-partner-item--choice img {
  height: 46px;
}
.hero-partner-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,169,98,0.25);
}
@media (max-width: 480px) {
  .hero-partners-logos { gap: 1rem; }
  .hero-partner-item img { height: 40px; }
}

/* ===== HERO TOP PARTNER LOGOS ===== */
.hero-top-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-top: 1rem;
}
.hero-top-partners-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,169,98,0.65);
  font-weight: 500;
}
.hero-top-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-top-partner-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,98,0.2);
  border-radius: 16px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.hero-top-partner-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,169,98,0.45);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,169,98,0.12);
}
.hero-top-partner-item img {
  height: 110px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.hero-top-partner-divider {
  width: 1px;
  height: 60px;
  background: rgba(201,169,98,0.25);
}
@media (max-width: 640px) {
  .hero-top-partner-item img { height: 80px; }
  .hero-top-partners-logos { gap: 1.25rem; }
  .hero-top-partner-item { padding: 0.75rem 1.25rem; }
}

/* ===== HERO PARTNER LOGOS – BOTTOM LEFT ===== */
.hero-partners-left {
  margin-top: 0; margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}
.hero-partners-left-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,169,98,0.6);
  font-weight: 500;
}
.hero-partners-left-logos {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.hero-partner-left-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,98,0.18);
  border-radius: 14px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.hero-partner-left-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,169,98,0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,169,98,0.12);
}
.hero-partner-left-item img {
  height: 90px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
.hero-partner-left-item--ora img {
  height: 125px;
  max-width: 220px;
}
.hero-partner-left-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,169,98,0.22);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hero-partner-left-item img { height: 64px; }
  .hero-partners-left-logos { gap: 0.85rem; }
  .hero-partner-left-item { padding: 0.6rem 0.9rem; border-radius: 10px; }
}


/* ==================== REGISTER NAV DROPDOWN ==================== */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-trigger {
  background: transparent;
  border: none;
  color: rgba(245,245,245,.8);
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: color .3s;
  position: relative;
}
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s;
}
.nav-dropdown-trigger:hover { color: var(--gold); }
.nav-dropdown-trigger:hover::after { width: 100%; }
.nav-chevron { transition: transform .3s; }
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown-trigger { color: var(--gold); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: rgba(20, 20, 22, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 12px;
  padding: .5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(201,169,98,.05);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 100;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(20, 20, 22, 0.97);
  border-left: 1px solid rgba(201,169,98,.25);
  border-top: 1px solid rgba(201,169,98,.25);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .9rem;
  color: rgba(245,245,245,.85);
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover {
  background: rgba(201, 169, 98, 0.12);
  color: var(--gold);
}
.nav-dropdown-menu a svg { flex-shrink: 0; color: var(--gold); }

/* Mobile menu Register sub-section */
.mobile-section-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  padding: .75rem 0 .25rem;
  border-top: 1px solid rgba(201,169,98,.15);
  margin-top: .5rem;
}
.mobile-menu .mobile-sub-link {
  padding-left: .75rem;
  font-size: .92rem;
  display: flex;
  align-items: center;
}
.mobile-menu .mobile-sub-link svg { color: var(--gold); }



/* ==================== SPONSOR & NOMINATION PAGES ==================== */
.page-hero {
  position: relative;
  padding: 9rem 0 3.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0c 0%, #111114 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201, 169, 98, 0.10), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(201, 169, 98, 0.06), transparent 50%);
}
.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--gold);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -.01em;
}
.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(245, 245, 245, 0.75);
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
.page-hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  color: rgba(245, 245, 245, 0.7);
  font-size: .9rem;
}
.page-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.page-hero-meta svg { color: var(--gold); }

/* Page section / layout */
.page-section {
  padding: 4rem 0 6rem;
  background: #0a0a0c;
  position: relative;
}
.page-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .page-layout { gap: 2rem; }
}

/* Info side */
.page-info { display: flex; flex-direction: column; gap: 1.25rem; }
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.info-row .info-card { margin: 0; }
@media (max-width: 720px) {
  .info-row { grid-template-columns: 1fr; }
}
.info-card {
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
}
.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 169, 98, 0.12);
  border: 1px solid rgba(201, 169, 98, 0.25);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 .65rem;
}
.info-card p {
  color: rgba(245, 245, 245, 0.72);
  line-height: 1.65;
  font-size: .92rem;
  margin: 0 0 .85rem;
}
.info-card p:last-child { margin-bottom: 0; }

.info-list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
}
.info-list li {
  position: relative;
  padding: .5rem 0 .5rem 1.6rem;
  color: rgba(245, 245, 245, 0.82);
  font-size: .9rem;
  line-height: 1.55;
}
.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .75rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(201, 169, 98, 0.5);
}
.info-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Pkg rows on sponsor page */
.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-top: .5rem;
}
@media (max-width: 640px) {
  .pkg-grid { grid-template-columns: 1fr; }
}
.pkg-row {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-top: 0;
}
.pkg-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .65rem;
}
.pkg-price {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.pkg-row-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pkg-row-list li {
  position: relative;
  padding: .3rem 0 .3rem 1.25rem;
  color: rgba(245, 245, 245, 0.7);
  font-size: .85rem;
  line-height: 1.5;
}
.pkg-row-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: .85rem;
}

/* Bank details */
.bank-details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: .85rem 1rem;
  margin: .65rem 0;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem 0;
  font-size: .88rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}
.bank-row:last-child { border-bottom: none; }
.bank-row span {
  color: rgba(245, 245, 245, 0.6);
}
.bank-row strong {
  color: rgba(245, 245, 245, 0.95);
  font-weight: 600;
  text-align: right;
}
.bank-note {
  font-size: .82rem !important;
  color: rgba(245, 245, 245, 0.55) !important;
  font-style: italic;
  line-height: 1.55 !important;
}

/* Application steps */
.info-steps {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
  counter-reset: step;
}
.info-steps li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .65rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.info-steps li:last-child { border-bottom: none; }
.info-steps li span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid rgba(201, 169, 98, 0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}
.info-steps li > div { flex: 1; }
.info-steps li strong {
  display: block;
  color: rgba(245, 245, 245, 0.92);
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: .15rem;
}
.info-steps li p {
  margin: 0 !important;
  font-size: .82rem !important;
  color: rgba(245, 245, 245, 0.6) !important;
  line-height: 1.5 !important;
}

/* Editable block highlight */
.editable-block {
  background: linear-gradient(140deg, rgba(201, 169, 98, 0.08), rgba(201, 169, 98, 0.02)) !important;
  border: 1px dashed rgba(201, 169, 98, 0.3) !important;
}

/* Form card */
.page-form-wrap { width: 100%; }

/* Divider between info and form */
.page-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 1rem 0 .5rem;
}
.page-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.4), transparent);
}
.page-divider-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 .5rem;
}
@media (max-width: 640px) {
  .page-divider { gap: .75rem; margin: .5rem 0 0; }
  .page-divider-text { font-size: .9rem; }
}

.page-form-card {
  padding: 2.5rem 2.25rem;
  border-radius: 18px;
}
.form-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 .35rem;
}
.form-subtitle {
  color: rgba(245, 245, 245, 0.6);
  font-size: .92rem;
  margin: 0 0 1.75rem;
}
.form-section-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin: 1.25rem 0 .9rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}
.form-section-label:first-of-type { margin-top: 0; }

.page-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
.page-form .form-group { margin-bottom: 1rem; }
.page-form label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: .45rem;
}
.page-form .optional {
  color: rgba(245, 245, 245, 0.4);
  font-weight: 400;
  font-size: .78rem;
}
.page-form input,
.page-form textarea,
.page-form .reg-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: .8rem .95rem;
  color: #f5f5f5;
  font-family: inherit;
  font-size: .92rem;
  transition: border-color .25s, background .25s;
  outline: none;
  box-sizing: border-box;
}
.page-form input:focus,
.page-form textarea:focus,
.page-form .reg-select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}
.page-form input::placeholder,
.page-form textarea::placeholder {
  color: rgba(245, 245, 245, 0.35);
}
.page-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
  line-height: 1.55;
}
.page-form .reg-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c9a962' stroke-width='2.5' stroke-linecap='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .95rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.page-form .reg-select option { background: #1a1a1c; color: #f5f5f5; padding: .5rem; }
.page-form .reg-select optgroup { color: var(--gold); font-weight: 600; }

.page-form .btn-submit {
  width: 100%;
  margin-top: 1rem;
}
.form-disclaimer {
  text-align: center;
  color: rgba(245, 245, 245, 0.5);
  font-size: .78rem;
  margin: 1rem 0 0;
  line-height: 1.5;
}

/* Success state on full page */
.page-form-card .success-state {
  text-align: center;
  padding: 2.5rem 1rem;
}
.page-form-card .success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.page-form-card .success-state h3 {
  font-size: 1.4rem;
  margin: 0 0 .5rem;
}
.page-form-card .success-state p {
  color: rgba(245, 245, 245, 0.7);
  margin: 0;
}

/* Responsive form */
@media (max-width: 640px) {
  .page-form-card { padding: 1.75rem 1.25rem; }
  .page-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .info-card { padding: 1.5rem 1.25rem; }
  .info-list-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 7rem 0 2.5rem; }
}


/* ==================== SPONSOR PAGE — PACKAGE CARDS ==================== */
.pkg-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .pkg-cards-grid { grid-template-columns: 1fr; }
}

.pkg-fullcard {
  padding: 2rem 1.75rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.pkg-fullcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}
.pkg-fullcard:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.4);
}

.pkg-fullcard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}
.pkg-fullcard-price {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}
.pkg-fullcard-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.pkg-fullcard-list li {
  position: relative;
  padding: .55rem 0 .55rem 1.85rem;
  color: rgba(245, 245, 245, 0.82);
  font-size: .92rem;
  line-height: 1.5;
}
.pkg-fullcard-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .9rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid rgba(201, 169, 98, 0.4);
}
.pkg-fullcard-list li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1.05rem;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}


/* ==================== SPONSORSHIP AGREEMENT — DOCUMENT STYLE ==================== */
.agreement-section {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, #0a0a0c 0%, #14141a 100%);
  position: relative;
}

.agreement-doc {
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 169, 98, 0.2);
}

/* Gold gradient title bar */
.agreement-header {
  background: linear-gradient(135deg, #c9a962 0%, #e6c887 35%, #b8902f 100%);
  padding: 2.5rem 2.5rem 2rem;
  text-align: center;
  position: relative;
  color: #1a1a1a;
}
.agreement-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: rgba(26, 26, 26, 0.4);
  border-radius: 2px;
}
.agreement-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 .5rem;
  letter-spacing: -.01em;
  color: #1a1a1a;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}
.agreement-subtitle {
  font-size: .95rem;
  color: #2a2a2a;
  margin: 0;
  font-weight: 500;
  opacity: .85;
}

/* Document body */
.agreement-body {
  padding: 2.5rem 2.5rem 2.25rem;
  color: #1a1a1a;
}

.agreement-section-block {
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.agreement-section-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.agreement-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: .65rem;
  letter-spacing: -.005em;
}
.agreement-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 .6rem;
  background: linear-gradient(135deg, #c9a962, #b8902f);
  color: #fff;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.agreement-section-desc {
  color: #555;
  font-size: .9rem;
  margin: -.4rem 0 1.25rem;
  line-height: 1.55;
}

/* Package options (radio cards) */
.package-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .package-options { grid-template-columns: 1fr; }
}
.package-option {
  cursor: pointer;
  display: block;
}
.package-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.package-option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fafafa;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  transition: all .2s;
}
.package-option:hover .package-option-card {
  border-color: #c9a962;
  background: #fffaf0;
}
.package-option input[type="radio"]:checked + .package-option-card {
  border-color: #b8902f;
  background: linear-gradient(135deg, #fffaf0, #fff5e1);
  box-shadow: 0 4px 12px rgba(201, 169, 98, 0.25);
}
.package-option input[type="radio"]:checked + .package-option-card .package-option-name::before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #b8902f;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  margin-right: .5rem;
  font-size: .75rem;
  font-weight: 800;
}
.package-option-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: .95rem;
}
.package-option-price {
  font-weight: 800;
  color: #b8902f;
  font-size: 1rem;
  white-space: nowrap;
}

/* Fields */
.agreement-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.agreement-row:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .agreement-row { grid-template-columns: 1fr; gap: 0; }
}
.agreement-field {
  margin-bottom: 1rem;
}
.agreement-field label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: #444;
  margin-bottom: .4rem;
  letter-spacing: .01em;
}
.optional-tag {
  font-weight: 400;
  color: #999;
  font-size: .75rem;
}
.agreement-field input[type="text"],
.agreement-field input[type="date"],
.agreement-field input[type="email"],
.agreement-field input[type="tel"] {
  width: 100%;
  background: #fff;
  border: 1.5px solid #d8d8d8;
  border-radius: 8px;
  padding: .7rem .9rem;
  color: #1a1a1a;
  font-family: inherit;
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.agreement-field input:focus {
  border-color: #c9a962;
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}
.agreement-field input::placeholder {
  color: #aaa;
}
.agreement-readonly {
  background: #f5f5f5 !important;
  color: #555 !important;
  cursor: not-allowed;
}
.agreement-file {
  width: 100%;
  padding: .65rem;
  background: #fafafa;
  border: 1.5px dashed #c9a962;
  border-radius: 8px;
  color: #555;
  font-size: .88rem;
  cursor: pointer;
}
.agreement-file::-webkit-file-upload-button {
  background: linear-gradient(135deg, #c9a962, #b8902f);
  color: #fff;
  border: none;
  padding: .5rem .9rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .82rem;
  cursor: pointer;
  margin-right: .65rem;
}
.field-hint {
  display: block;
  color: #888;
  font-size: .75rem;
  margin-top: .35rem;
  font-style: italic;
}

/* Payment terms text */
.agreement-terms {
  background: #fafafa;
  border-left: 3px solid #c9a962;
  padding: 1rem 1.25rem;
  border-radius: 6px;
}
.agreement-terms p {
  color: #444;
  font-size: .88rem;
  line-height: 1.65;
  margin: 0 0 .75rem;
}
.agreement-terms p:last-child { margin-bottom: 0; }

/* Confirmation checkbox */
.agreement-confirm-block {
  background: linear-gradient(135deg, #fffaf0, #fff5e1);
  padding: 1.25rem 1.25rem !important;
  border-radius: 10px;
  border: 1.5px solid rgba(201, 169, 98, 0.3) !important;
  border-bottom: 1.5px solid rgba(201, 169, 98, 0.3) !important;
}
.agreement-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  cursor: pointer;
  user-select: none;
}
.agreement-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.agreement-checkbox-mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid #c9a962;
  border-radius: 5px;
  transition: all .2s;
  margin-top: 1px;
  position: relative;
}
.agreement-checkbox input[type="checkbox"]:checked + .agreement-checkbox-mark {
  background: linear-gradient(135deg, #c9a962, #b8902f);
  border-color: #b8902f;
}
.agreement-checkbox input[type="checkbox"]:checked + .agreement-checkbox-mark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg);
}
.agreement-checkbox-text {
  color: #1a1a1a;
  font-size: .9rem;
  line-height: 1.6;
}
.agreement-checkbox-text strong {
  color: #b8902f;
  font-weight: 700;
}

/* Submit button */
.agreement-actions {
  text-align: center;
  margin-top: 2rem;
}
.agreement-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: linear-gradient(135deg, #c9a962 0%, #e6c887 50%, #b8902f 100%);
  color: #1a1a1a;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(201, 169, 98, 0.4);
}
.agreement-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201, 169, 98, 0.55);
}
.agreement-btn:disabled {
  cursor: not-allowed;
  transform: none;
}
.agreement-footnote {
  color: #888;
  font-size: .78rem;
  margin: 1rem 0 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 640px) {
  .agreement-header { padding: 2rem 1.5rem 1.5rem; }
  .agreement-body { padding: 1.75rem 1.25rem; }
  .agreement-section-title { font-size: 1.05rem; }
  .agreement-section-num { min-width: 32px; height: 32px; font-size: .78rem; }
  .agreement-btn { padding: .9rem 1.75rem; font-size: .92rem; }
}


/* ==================== GOOGLE DRIVE INSTRUCTIONS (Sponsor Form) ==================== */
.drive-instructions {
  background: linear-gradient(135deg, #fffaf0 0%, #fff5e1 100%);
  border: 1.5px solid rgba(201, 169, 98, 0.35);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  margin-top: .85rem;
}
.drive-instructions-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #1a1a1a;
  margin-bottom: .65rem;
  padding-bottom: .65rem;
  border-bottom: 1px dashed rgba(201, 169, 98, 0.4);
}
.drive-instructions-head svg {
  color: #b8902f;
  flex-shrink: 0;
}
.drive-instructions-head strong {
  font-size: .95rem;
  font-weight: 700;
}
.drive-instructions-intro {
  color: #444;
  font-size: .88rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.drive-instructions-intro strong {
  color: #b8902f;
  font-weight: 700;
}
.drive-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.drive-steps li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .6rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}
.drive-steps li:last-child { border-bottom: none; }
.drive-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a962, #b8902f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
}
.drive-steps li > div { flex: 1; }
.drive-steps li strong {
  display: block;
  color: #1a1a1a;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .15rem;
}
.drive-steps li p {
  margin: 0;
  font-size: .82rem;
  color: #555;
  line-height: 1.55;
}
.drive-steps li em {
  font-style: normal;
  background: rgba(201, 169, 98, 0.18);
  color: #8a6a1f;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .8rem;
}
.drive-steps li a {
  color: #b8902f;
  text-decoration: underline;
  font-weight: 600;
}
.drive-steps li a:hover { color: #8a6a1f; }

@media (max-width: 640px) {
  .drive-instructions { padding: 1rem 1rem; }
  .drive-instructions-head strong { font-size: .88rem; }
  .drive-steps li { gap: .65rem; }
  .drive-step-num { width: 24px; height: 24px; font-size: .75rem; }
}


/* ==================== NOMINATION FORM EXTRAS ==================== */

/* Checkbox pills */
.checkbox-group-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: #444;
  margin-bottom: .5rem;
  letter-spacing: .01em;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.checkbox-pill {
  cursor: pointer;
  position: relative;
}
.checkbox-pill input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkbox-pill span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1rem;
  background: #fafafa;
  border: 1.5px solid #d8d8d8;
  border-radius: 30px;
  color: #444;
  font-size: .88rem;
  font-weight: 500;
  transition: all .2s;
}
.checkbox-pill:hover span {
  border-color: #c9a962;
  color: #1a1a1a;
}
.checkbox-pill input[type="checkbox"]:checked + span {
  background: linear-gradient(135deg, #fffaf0, #fff5e1);
  border-color: #b8902f;
  color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(201, 169, 98, 0.2);
}
.checkbox-pill input[type="checkbox"]:checked + span::before {
  content: '✓';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #b8902f;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: .7rem;
  font-weight: 800;
}

/* Select (white theme) */
.agreement-select {
  width: 100%;
  background: #fff;
  border: 1.5px solid #d8d8d8;
  border-radius: 8px;
  padding: .7rem .9rem;
  padding-right: 2.5rem;
  color: #1a1a1a;
  font-family: inherit;
  font-size: .92rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b8902f' stroke-width='2.5' stroke-linecap='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .95rem center;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.agreement-select:focus {
  border-color: #c9a962;
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}
.agreement-select option { background: #fff; color: #1a1a1a; padding: .5rem; }
.agreement-select optgroup { color: #b8902f; font-weight: 700; }

/* Textareas (white theme) */
.agreement-field textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid #d8d8d8;
  border-radius: 8px;
  padding: .85rem .95rem;
  color: #1a1a1a;
  font-family: inherit;
  font-size: .92rem;
  line-height: 1.6;
  outline: none;
  resize: vertical;
  min-height: 110px;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.agreement-field textarea:focus {
  border-color: #c9a962;
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}
.agreement-field textarea::placeholder {
  color: #aaa;
  white-space: pre-line;
}

/* Attachment list */
.attachment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: .85rem 1rem;
}
.attachment-list li {
  padding: .35rem 0;
  color: #444;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.attachment-list li::before {
  content: '📎';
  font-size: .95rem;
}
.attachment-list li strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Final note (Section 9) */
.agreement-final-note {
  background: linear-gradient(135deg, #fffaf0, #fff5e1);
  border-radius: 10px;
  padding: 1.5rem 1.5rem !important;
  border: 1px solid rgba(201, 169, 98, 0.3) !important;
}
.agreement-final-note .agreement-section-title {
  margin-bottom: .85rem;
}
.agreement-final-text {
  color: #1a1a1a;
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}



/* ==================== HERO BUTTONS — Sponsor & Nomination ==================== */
.hero-btns-centered {
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

/* Center the entire hero-left content when centered buttons are used */
.hero-btns-centered ~ * { /* no-op safety */ }

/* === SPONSOR (filled gold with animation) === */
.btn-hero-sponsor {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 2.25rem;
  background: linear-gradient(135deg, #c9a962 0%, #e6c887 50%, #b8902f 100%);
  background-size: 200% 200%;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  overflow: hidden;
  box-shadow:
    0 6px 20px rgba(201, 169, 98, 0.45),
    0 0 0 0 rgba(201, 169, 98, 0.6);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: sponsorPulse 2.6s ease-in-out infinite, sponsorGradientShift 4s ease infinite;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}
.btn-hero-sponsor-text {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}
.btn-hero-sponsor-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 20%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 80%
  );
  transform: skewX(-20deg);
  animation: sponsorShine 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.btn-hero-sponsor:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 12px 28px rgba(201, 169, 98, 0.6),
    0 0 0 6px rgba(201, 169, 98, 0.15);
  animation-play-state: paused;
}
.btn-hero-sponsor:active { transform: translateY(-1px) scale(1.02); }

@keyframes sponsorPulse {
  0%, 100% {
    box-shadow:
      0 6px 20px rgba(201, 169, 98, 0.45),
      0 0 0 0 rgba(201, 169, 98, 0.5);
  }
  50% {
    box-shadow:
      0 6px 20px rgba(201, 169, 98, 0.55),
      0 0 0 10px rgba(201, 169, 98, 0);
  }
}
@keyframes sponsorGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes sponsorShine {
  0%       { left: -100%; }
  60%, 100% { left: 130%; }
}

/* === NOMINATION (outlined gold) === */
.btn-hero-nomination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 2.1rem;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-hero-nomination:hover {
  background: rgba(201, 169, 98, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 169, 98, 0.2);
}
.btn-hero-nomination:active { transform: translateY(0); }

@media (max-width: 640px) {
  .hero-btns-centered { gap: .75rem; flex-direction: column; align-items: stretch; }
  .btn-hero-sponsor, .btn-hero-nomination { padding: .85rem 1.75rem; font-size: .92rem; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .btn-hero-sponsor { animation: none; }
  .btn-hero-sponsor-shine { animation: none; display: none; }
}

/* =====================================================
   i18n: language switcher + Arabic / RTL styling
   ===================================================== */

/* Language toggle button in the header */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 999px;
  padding: 3px;
  margin-right: .85rem;
  user-select: none;
}
.lang-switch button {
  background: transparent;
  border: 0;
  color: #d8c08a;
  font-family: inherit;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .35rem .85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button.active {
  background: linear-gradient(135deg, #c9a962, #b9963d);
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(201, 169, 98, 0.35);
}

/* Mobile: keep the lang switch visible inside the mobile menu too */
.mobile-menu .lang-switch {
  margin: .5rem 0 .25rem;
  align-self: flex-start;
}

/* In RTL mode the toggle moves to the other side naturally,
   but we tighten its spacing on small screens */
@media (max-width: 640px) {
  .lang-switch { margin-right: .35rem; }
  .lang-switch button { padding: .3rem .65rem; font-size: .72rem; }
}

/* ===== Arabic font + RTL global rules ===== */

/* Arabic web font (Cairo) — loads only when AR is active to save bandwidth.
   The @import lives at the top of i18n.js to avoid blocking initial paint. */
html[dir="rtl"] body,
html[lang="ar"] body {
  font-family: 'Cairo', 'Tajawal', 'Segoe UI', 'Poppins', sans-serif;
  letter-spacing: 0;
}

/* Flip flex rows so left/right swaps make sense in RTL */
html[dir="rtl"] .nav-inner,
html[dir="rtl"] .hero-meta,
html[dir="rtl"] .hero-btns,
html[dir="rtl"] .about-cards,
html[dir="rtl"] .nav-left-group,
html[dir="rtl"] .nav-right-group {
  direction: rtl;
}

/* Form fields keep left-to-right for emails, URLs, numbers, dates */
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="url"],
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="number"],
html[dir="rtl"] input[type="date"] {
  direction: ltr;
  text-align: right;
}

/* Form labels and text inputs read right-to-left */
html[dir="rtl"] label,
html[dir="rtl"] .form-group,
html[dir="rtl"] textarea,
html[dir="rtl"] input[type="text"] {
  text-align: right;
}

/* Margins/icons inside buttons: flip side */
html[dir="rtl"] svg[style*="margin-right"] {
  margin-right: 0 !important;
  margin-left: .45rem;
}

/* Section titles & headings center stays center; numbered section markers stay LTR */
html[dir="rtl"] .section-num,
html[dir="rtl"] .price,
html[dir="rtl"] .hero-edition {
  direction: ltr;
  unicode-bidi: embed;
}

/* Slightly larger Arabic body type for legibility */
html[dir="rtl"] p,
html[dir="rtl"] li {
  line-height: 1.85;
}

/* Hide on very narrow phones if needed (kept visible by default) */

/* =====================================================
   RTL fix: phone numbers, contact list, and other LTR-locked values
   ===================================================== */

/* Phone numbers, emails, URLs, addresses with + or digits/Latin chars
   must always render left-to-right, even when the surrounding language is Arabic */
html[dir="rtl"] .foot-contact li span,
html[dir="rtl"] .foot-contact li {
  direction: ltr;
  unicode-bidi: embed;
}

/* In Arabic, the contact row should flow icon → number from RIGHT side
   so the icon appears on the right of the row (close to the right edge),
   not on the left. */
html[dir="rtl"] .foot-contact li {
  flex-direction: row-reverse;
  justify-content: flex-end;
  text-align: right;
}

/* Same fix for any general numeric/LTR cells inside the contact area */
html[dir="rtl"] .foot-contact span,
html[dir="rtl"] .foot-contact a {
  direction: ltr;
  unicode-bidi: embed;
  text-align: left;
}

/* Page-hero meta line (date + venue with icons) — same flip for icon side */
html[dir="rtl"] .page-hero-meta > span,
html[dir="rtl"] .hero-meta > span {
  flex-direction: row-reverse;
}

/* Date strings: in Arabic the translated text (e.g. "12 يوليو 2026") is already
   right-to-left native, so we keep it RTL and just isolate it so the surrounding
   icon/flex layout doesn't reorder the digits. */
html[dir="rtl"] [data-i18n="hero.date"],
html[dir="rtl"] [data-i18n="nom.heroDate"],
html[dir="rtl"] [data-i18n="spn.heroDate"] {
  direction: rtl;
  unicode-bidi: isolate;
  white-space: nowrap;
}

/* Pricing values like "OMR 6,000" stay LTR */
html[dir="rtl"] .pkg-fullcard-price,
html[dir="rtl"] .package-option-price {
  direction: ltr;
  unicode-bidi: embed;
}
