.nav-logo{
    display: flex;
    align-items: center;
}

.logo-wrapper{
    position: relative;
    width: 150px;
    overflow: hidden;
}

.logo{
    width: 150px;
    display: block;
}

/* Black Logo */
.black-logo{
    position: relative;
    z-index: 1;
}

/* Purple Logo Overlay */
.purple-logo{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    /* Start hidden from right side */
    clip-path: inset(0 100% 0 0);

    animation: leftToRightReveal 4s infinite alternate;
}

/* Left → Right Smooth Reveal */
@keyframes leftToRightReveal{
    0%{
        clip-path: inset(0 100% 0 0);
    }

    100%{
        clip-path: inset(0 0 0 0);
    }
}

/* ==========================================================================
   01. RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: #0B0812;
  color: #FEFEFE;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ==========================================================================
   02. DESIGN TOKENS (CSS VARIABLES) - UPDATED WITH YOUR COLORS
   ========================================================================== */
:root {
  /* Color Palette - Accents (UPDATED) */
  --gold: #D69CFC;
  --gold2: #E9B5FF;
  --orange: #D69CFC;
  --purple: #58337D;
  --green: #86EFAC;
  --blue: #93C5FD;

  /* Color Palette - Neutrals (UPDATED) */
  --white: #FEFEFE;
  --muted: #A0A0A0;
  --dim: #6A6A6A;

  /* Background Hierarchies */
  --bg: #0D0A14;
  --bg2: #120F1C;
  --bg3: #1A1527;
  --bg4: #231E33;

  /* Typography Stacks */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-mono: 'Montserrat', sans-serif;
}
img{
    width: 50px;
   
    padding-top: 5px !important;
}
.imm{
     position: relative;
    /*top: 10px;*/
}

/* ==========================================================================
   03. GLOBAL LAYOUT & REUSABLE COMPONENTS
   ========================================================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}

section {
  padding: 7rem 0;
  position: relative;
}

/* Section Typography Headers */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 54px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 60px rgba(139, 92, 246, 0.15);
}

.section-lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
}

/* Reusable Buttons */
.btn-primary {
  position: relative;
  display: inline-block;
  background: var(--gold);
  color: #FEFEFE;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.2s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold2), #E9D5FF);
  transform: translateX(-101%);
  transition: transform 0.25s ease;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================================================================
   04. AMBIENT BACKGROUNDS & CURSOR EFFECTS
   ========================================================================== */
/* Interactive Custom Cursor Icons */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: #D69CFC;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.15s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(214, 156, 252, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, width 0.2s, height 0.2s;
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: rgba(214, 156, 252, 0.7);
}

/* Ambient Noise and Lighting Gradients over canvas */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(88, 51, 125, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 90%, rgba(214, 156, 252, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(88, 51, 125, 0.03) 0%, transparent 70%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ==========================================================================
   05. NAVIGATION COMPONENT
   ========================================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 64px;
  background: white;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(214, 156, 252, 0.1);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color:purple;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: purple;
}

.nav-cta {
  display: inline-block;
  background: var(--gold);
  color: #1A0A2E;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  cursor: none;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(214, 156, 252, 0.3);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(214, 156, 252, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: purple;
  transition: all 0.3s;
}

/* ==========================================================================
   06. HERO SECTION & TICKER
========================================================================== */

#hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding:100px 0 70px;
    background:#3b0c6a;
    /*background:*/
    /*    linear-gradient(*/
    /*        135deg,*/
    /*        #58337D 0%,*/
    /*        #6A3E94 45%,*/
    /*        #4A2969 100%*/
    /*    );*/
}

/* Background Glow */
.hero-bg{
    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at top left,
            rgba(255,255,255,.08),
            transparent 35%
        ),

        radial-gradient(
            circle at bottom right,
            rgba(214,156,252,.18),
            transparent 35%
        ),

        radial-gradient(
            circle at center,
            rgba(255,255,255,.03),
            transparent 60%
        );
}

/* Animated Glow */
#hero::before{
    content:'';
    position:absolute;

    width:500px;
    height:500px;

    background:rgba(214,156,252,.15);

    border-radius:50%;

    top:-150px;
    right:-120px;

    filter:blur(80px);

    animation:glowMove 6s ease-in-out infinite alternate;
}

@keyframes glowMove{
    from{
        transform:translateY(0px);
    }

    to{
        transform:translateY(40px);
    }
}

/* Grid */
.hero-grid{
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);

    background-size:70px 70px;

    mask-image:
        radial-gradient(circle at center, black 30%, transparent 85%);
}

/* Main Layout */
.hero-inner{
    max-width:1400px;
    margin:0 auto;
    padding:0 4rem;

    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:5rem;
    align-items:center;

    position:relative;
    z-index:2;

    width:100%;
}

/* Left Side */
.hero-left{
    position:relative;
}

/* Eyebrow */
.hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    font-family:var(--font-mono);

    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;

    color:#fff;

    margin-bottom:2rem;
}

.hero-eyebrow::before{
    content:'';

    width:8px;
    height:8px;

    border-radius:50%;

    background:#D69CFC;

    box-shadow:0 0 15px #D69CFC;
}

/* Hero Title */
.hero-title{
    font-family:var(--font-display);

    font-size:clamp(72px,9vw,120px);
    line-height:.88;
    letter-spacing:2px;

    color:#fff;

    margin-bottom:1rem;

    text-transform:uppercase;

    text-shadow:
        0 0 25px rgba(255,255,255,.10),
        0 0 60px rgba(214,156,252,.25);
}

.hero-title span{
    display:block;

    color:#E6BEFF;

    text-shadow:
        0 0 20px rgba(230,190,255,.8),
        0 0 50px rgba(214,156,252,.45);
}

/* Version */
.hero-version{
    display:flex;
    align-items:center;
    gap:1rem;

    margin-bottom:1.5rem;
}

.hero-version-number{
    font-family:var(--font-display);

    font-size:72px;
    line-height:1;

    color:#fff;
}

.hero-version-text{
    font-family:var(--font-mono);

    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;

    color:#D69CFC;
}

/* Subtitle */
.hero-subtitle{
    font-size:18px;
    line-height:1.9;

    color:rgba(255,255,255,.82);

    max-width:600px;

    margin-bottom:3rem;
}

.hero-subtitle strong{
    color:#fff;
}

/* Buttons */
.hero-ctas{
    display:flex;
    gap:1rem;
    flex-wrap:wrap;

    margin-bottom:4rem;
}

.btn-primary{
    padding:18px 40px;

    border-radius:14px;

    background:#fff;
    color:#58337D;

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

    text-decoration:none;

    box-shadow:
        0 10px 25px rgba(255,255,255,.18);

    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-5px);

    box-shadow:
        0 15px 35px rgba(255,255,255,.25);
}

.btn-secondary{
    padding:18px 40px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    color:#fff;

    text-decoration:none;

    transition:.3s;
}

.btn-secondary:hover{
    background:rgba(255,255,255,.14);
}

/* Hero Stats */
.hero-stats{
    display:flex;
    gap:1.5rem;
    flex-wrap:wrap;
}

.hero-stat{
    flex:1;
    min-width:130px;

    padding:1.5rem;

    border-radius:20px;

    /*background:rgba(255,255,255,.08);*/
    
  background: rgb(46 18 74);
    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.06),
        0 8px 25px rgba(0,0,0,.12);

    transition:.3s;
}

.hero-stat:hover{
    transform:translateY(-5px);

    background:rgba(255,255,255,.12);
}

.hero-stat-num{
    display:block;

    font-family:var(--font-display);

    font-size:48px;
    line-height:1;

    color:#fff;
}

.hero-stat-lbl{
    margin-top:10px;

    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;

    color:rgba(255,255,255,.7);
}

/* Right Side */
.hero-right{
    position:relative;
}

/* Prize Card */
.hero-prize-card{
    position:relative;

    padding:3rem;

    border-radius:32px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.04)
        );

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    overflow:hidden;

    box-shadow:
        0 20px 60px rgba(0,0,0,.22),
        inset 0 1px 1px rgba(255,255,255,.08);
}

/* Top Border */
.hero-prize-card::before{
    content:'';

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
        linear-gradient(
            90deg,
            #fff,
            #D69CFC,
            #fff
        );
}

/* Decorative Glow */
.hero-prize-card::after{
    content:'';

    position:absolute;

    width:250px;
    height:250px;

    background:rgba(214,156,252,.15);

    border-radius:50%;

    right:-120px;
    top:-120px;

    filter:blur(30px);
}

/* Prize Text */
.prize-label{
    font-family:var(--font-mono);

    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;

    color:rgba(255,255,255,.65);

    margin-bottom:1rem;
}

.prize-amount{
    font-family:var(--font-display);

    font-size:82px;
    line-height:1;

    color:#fff;

    margin-bottom:.5rem;

    text-shadow:
        0 0 25px rgba(255,255,255,.15),
        0 0 60px rgba(214,156,252,.30);
}

.prize-sub{
    color:rgba(255,255,255,.72);

    margin-bottom:2rem;
}

/* Prize Breakdown */
.prize-breakdown{
    display:flex;
    flex-direction:column;
    gap:1rem;
}

.prize-row{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:1rem 1.2rem;

    border-radius:18px;

    background: rgb(46 18 74);

    border:1px solid white;

    backdrop-filter:blur(10px);

    transition:.3s;
}

.prize-row:hover{
    background:rgba(255,255,255,.10);

    border-color:rgba(255,255,255,.12);

    transform:translateX(8px);

    box-shadow:
        0 10px 20px rgba(0,0,0,.12);
}

.prize-row-label{
    display:flex;
    align-items:center;
    gap:12px;

    color:#fff;

    font-size:14px;
}

.prize-row-label img{
    width:32px;

    filter:
        drop-shadow(0 0 10px rgba(255,255,255,.18));
}

.prize-row-val{
    font-family:var(--font-mono);

    font-size:16px;
    font-weight:600;

    color:#fff;
}

.prize-row-val.gold{
    color:#D69CFC;
}

/* Decorative Squares */
.hero-deco{
    position:absolute;

    width:180px;
    height:180px;

    border:1px solid rgba(255,255,255,.08);

    right:-40px;
    bottom:-40px;

    transform:rotate(45deg);
}

.hero-deco2{
    position:absolute;

    width:120px;
    height:120px;

    border:1px solid rgba(255,255,255,.05);

    right:20px;
    bottom:20px;

    transform:rotate(45deg);
}

/* Ticker */
.ticker-wrap{
    position:relative;
    z-index:2;

    background:
        linear-gradient(
            90deg,
            #D69CFC,
            #58337D,
            #D69CFC,
             #58337D
        );

    overflow:hidden;

    padding:14px 0;

    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.ticker{
    display:flex;
    white-space:nowrap;

    animation:ticker 22s linear infinite;
}

.ticker-item{
    font-family:var(--font-display);

    font-size:15px;
    letter-spacing:3px;

    color:#fff;

    padding:0 3rem;

    text-shadow:
        0 0 20px rgba(255,255,255,.3);
}

@keyframes ticker{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* Responsive */
@media(max-width:1024px){

    .hero-inner{
        grid-template-columns:1fr;
    }

    .hero-right{
        /*margin-top:3rem;*/
    }
}

@media(max-width:768px){

    #hero{
        min-height:auto;
        padding:40px 0 60px;
    }

    .hero-inner{
        padding:0 1.5rem;
    }

    .hero-title{
        font-size:64px;
    }

    .hero-stats{
        flex-direction:column;
    }

    .hero-prize-card{
        padding:2rem;
    }

    .prize-amount{
        font-size:56px;
    }
}

@media (max-width: 768px){

  .hero-stats{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
  }

  .hero-stat{
      text-align: center;
      padding: 20px 10px !important;
      border-bottom: none;
      min-width: auto;
  }

  .hero-stat-num{
      text-align: center;
      display: block;
      font-size: 38px;
  }

  .hero-stat-lbl{
      text-align: center;
      display: block;
      margin-top: 8px;
  }

}

/* ==========================================================================
   07. ABOUT SECTION
   ========================================================================== */
#about {
  background: #D69CFC;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text p {
  color: black;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-text p strong {
  color: var(--white);
  font-weight: 500;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: linear-gradient(135deg, rgba(88, 51, 125, 0.08), rgba(214, 156, 252, 0.04));
  border-radius: 0 4px 4px 0;
}

.about-quote p {
  font-size: 18px;
  color: var(--white);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}



.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(214, 156, 252, 0.15);
}



.about-num {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 1px;
  color: #D69CFC;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(214, 156, 252, 0.3);
}

.about-num-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-num-desc {
  font-size: 13px;
  color: white;
  margin-top: 0.5rem;
  line-height: 1.5;
}


/* ==========================================================================
   07. ABOUT SECTION
   ========================================================================== */
#about {
  background: #D69CFC;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text p {
  color: black;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-text p strong {
  color: var(--white);
  font-weight: 500;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: linear-gradient(135deg, rgba(88, 51, 125, 0.08), rgba(214, 156, 252, 0.04));
  border-radius: 0 4px 4px 0;
}

.about-quote p {
  font-size: 18px;
  color: var(--white);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.about-quote cite {
  display: block;
  font-size: 12px;
  color: #58337D;
  font-style: normal;
  margin-top: 0.75rem;
  letter-spacing: 1px;
}

.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(214, 156, 252, 0.15);
}

.about-num-card {
  /*background: #58337D;*/
  background: rgb(46 18 74);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.about-num {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(214, 156, 252, 0.3);
}

.about-num-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}



/* ==========================================================================
   08. CATEGORIES SECTION
   ========================================================================== */

#categories{
    background:#3b0c6a;
}

/* Grid */
.cats-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1.8rem;
    margin-top:4rem;
}

/* Card */
.cat-card{
    position:relative;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.06),
            rgba(255,255,255,.03)
        );

    border:1px solid rgba(255,255,255,.15);

    padding:2.5rem;

    overflow:hidden;

    border-radius:24px;

    cursor:none;

    transition:all .35s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,.18),
        0 0 20px rgba(214,156,252,.10);
}

/* Soft Glow */
.cat-card::before{
    content:'';

    position:absolute;

    top:-60px;
    right:-60px;

    width:160px;
    height:160px;

    border-radius:50%;

    background:rgba(214,156,252,.10);

    filter:blur(40px);

    pointer-events:none;
}

/* Bottom Hover Line */
.cat-card::after{
    content:'';

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:2px;

    background:#D69CFC;

    transform:scaleX(0);

    transform-origin:left;

    transition:transform .4s ease;
}

/* Hover */
.cat-card:hover{

    transform:translateY(-6px);

    border-color:rgba(214,156,252,.40);

    box-shadow:
        0 15px 35px rgba(0,0,0,.22),
        0 0 30px rgba(214,156,252,.18);
}

.cat-card:hover::after{
    transform:scaleX(1);
}

/* Number */
.cat-num{
    position:absolute;

    top:1rem;
    right:1.5rem;

    font-family:var(--font-display);

    font-size:64px;

    color:rgba(255,255,255,.05);

    line-height:1;

    letter-spacing:2px;
}

/* Badge */
.cat-badge{
    display:inline-block;

    font-family:var(--font-mono);

    font-size:9px;

    letter-spacing:2px;

    text-transform:uppercase;

    padding:6px 12px;

    margin-bottom:1.3rem;

    border-radius:30px;
}

.cat-badge.new{
    background:rgba(214,156,252,.12);

    color:#fff;

    border:1px solid rgba(214,156,252,.25);
}

.cat-badge.classic{
    background:rgba(255,255,255,.08);

    color:#fff;

    border:1px solid rgba(255,255,255,.12);
}

/* Title */
.cat-title{
    font-family:var(--font-display);

    font-size:32px;

    letter-spacing:1px;

    color:#fff;

    margin-bottom:1rem;

    line-height:1.1;
}

/* Description */
.cat-desc{
    font-size:14px;

    color:rgba(255,255,255,.72);

    line-height:1.9;

    margin-bottom:2rem;
}

/* Meta */
.cat-meta{
    display:flex;

    gap:12px;

    flex-wrap:wrap;
}

/* Tag */
.cat-tag{
    display:flex;

    align-items:center;

    gap:6px;

    padding:8px 12px;

    border-radius:30px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.06);

    font-size:10px;

    letter-spacing:1px;

    color:#fff;
}

.cat-tag::before{
    content:'•';

    color:#D69CFC;

    font-size:14px;
}

/* Prize Section */
.cat-prizes{
    margin-top:2rem;

    padding-top:1.5rem;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    gap:1rem;
}

/* Prize Item */
.cat-prize-item{
    text-align:center;

    flex:1;

    padding:1rem;

    border-radius:16px;

    background:rgba(255,255,255,.04);

    transition:.3s;
}

.cat-prize-item:hover{
    background:rgba(255,255,255,.08);

    transform:translateY(-3px);
}

/* Medal */
.cat-prize-medal img{
    width:38px;

    margin-bottom:.4rem;

    filter:
        drop-shadow(0 0 10px rgba(255,255,255,.15));
}

/* Prize Amount */
.cat-prize-amt{
    display:block;

    font-family:var(--font-mono);

    font-size:13px;

    color:#fff;

    font-weight:600;
}

/* Prize Place */
.cat-prize-place{
    font-size:11px;

    color:rgba(255,255,255,.55);
}
/* ==========================================================================
   09. EVENT FORMAT / AGENDA SECTION
   ========================================================================== */

#format{
    background:#D69CFC;
}

.format-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2rem;
    margin-top:4rem;
}

/* Cards */

.day-card{
    background:#58337D;

    border-radius:28px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.10);

    box-shadow:
        0 15px 35px rgba(0,0,0,.15);

    transition:.35s ease;
}

.day-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.22);
}

/* Header */

.day-header{
    padding:2rem;

    display:flex;

    align-items:center;

    justify-content:space-between;

    border-bottom:1px solid rgba(255,255,255,.08);
}

.day-1 .day-header{
    background:rgba(214,156,252,.08);
}

.day-2 .day-header{
    background:rgba(255,255,255,.04);
}

.day-label{
    font-size:10px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#D69CFC;
}

.day-title{
    font-size:28px;

    color:#fff;

    margin-top:.4rem;
}

.day-tag{
    padding:8px 14px;

    border-radius:30px;

    font-size:10px;

    letter-spacing:2px;

    color:#fff;

    border:1px solid rgba(214,156,252,.30);

    background:rgba(214,156,252,.10);
}

/* Schedule */

.day-schedule{
    padding:0 2rem;
}

.schedule-item{
    display:flex;

    gap:1.5rem;

    padding:1.25rem 0;

    border-bottom:1px solid rgba(255,255,255,.05);

    transition:.3s ease;
}

.schedule-item:hover{
    padding-left:10px;
}

.schedule-item:last-child{
    border-bottom:none;
}

/* Time */

.schedule-time{
    min-width:75px;

    font-size:11px;

    color:#D69CFC;

    font-weight:600;

    letter-spacing:1px;

    margin-top:3px;
}

/* Content */

.schedule-title{
    font-size:15px;

    color:#fff;

    font-weight:600;

    margin-bottom:4px;
}

.schedule-desc{
    font-size:13px;

    color:rgba(255,255,255,.68);

    line-height:1.7;
}

/* Mobile */

@media(max-width:768px){

    .format-grid{
        grid-template-columns:1fr;
    }

    .day-header{
        flex-direction:column;
        align-items:flex-start;
        gap:1rem;
    }

    .day-title{
        font-size:24px;
    }

    .day-schedule{
        padding:0 1.5rem;
    }
}
/* ==========================================================================
   10. HIRING ZONE SECTION
   ========================================================================== */

#hiring{
    background:#D69CFC;
    position:relative;
    overflow:hidden;
}

.hiring-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:3rem;
    align-items:start;
}

/* Left Side */

.hiring-steps{
    margin-top:2rem;
    background:#58337D;
    border-radius:24px;
    padding:2rem;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.hiring-step{
    display:flex;
    gap:1rem;
    padding:1rem 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.hiring-step:last-child{
    border-bottom:none;
}

.step-num{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#D69CFC;
    color:#58337D;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.step-text h4{
    color:#fff;
    font-size:15px;
    margin-bottom:.4rem;
}

.step-text p{
    color:rgba(255,255,255,.70);
    line-height:1.7;
    font-size:13px;
}

/* Right Card */

.hiring-main-card{
    background:#58337D;
    border-radius:30px;
    padding:3rem;

    border:1px solid rgba(255,255,255,.10);

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);

    transition:.3s;
}

.hiring-main-card:hover{
    transform:translateY(-6px);
}

.hiring-headline{
    font-family:var(--font-display);
    font-size:56px;
    line-height:.95;
    color:#fff;
    margin-bottom:1rem;
}

.hiring-headline span{
    color:#D69CFC;
}

.hiring-sub{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    margin-bottom:2rem;
}

/* Pricing Grid */

.hiring-booth-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:1rem;
}

/* Booth Card */

.booth-card{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:1.2rem 1.5rem;

    border-radius:18px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.booth-card:hover{
    background:rgba(255,255,255,.10);
    transform:translateX(5px);
}

.booth-tier-label{
    display:block;
    font-size:11px;
    letter-spacing:2px;
    margin-bottom:.3rem;
    color:#D69CFC;
}

.booth-price{
    font-size:32px;
    color:#fff;
    font-family:var(--font-display);
}

.booth-desc{
    font-size:12px;
    color:rgba(255,255,255,.65);
    max-width:220px;
}

/* Mobile */

@media(max-width:768px){

    .hiring-grid{
        grid-template-columns:1fr;
    }

    .hiring-main-card{
        padding:2rem;
    }

    .hiring-headline{
        font-size:42px;
    }

    .booth-card{
        flex-direction:column;
        align-items:flex-start;
        gap:.8rem;
    }
}
/* ==========================================================================
   11. PRIZES MATRIX SECTION
   ========================================================================== */
#prizes {
  background: #3b0c6a;
  position: relative;
  overflow: hidden;
}

#prizes::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(88, 51, 125, 0.1) 0%, rgba(214, 156, 252, 0.05) 40%, transparent 65%);
}

.prizes-hero {
  text-align: center;
  margin-bottom: 5rem;
}

.prizes-total {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 140px);
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 60px rgba(214, 156, 252, 0.4), 0 0 120px rgba(88, 51, 125, 0.2);
  filter: drop-shadow(0 0 30px rgba(214, 156, 252, 0.3));
}

.prizes-total::after {
  content: 'TOTAL PRIZE POOL';
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--muted);
  margin-top: 0.5rem;
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.prize-cat-card {
 background: #462b61;
    border: 1px solid rgb(255 255 255 / 77%);
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.prize-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 156, 252, 0.25);
}

.prize-cat-top {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.prize-cat-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.prize-cat-total {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
}

/* Financial Tier Podiums */
.prize-podium {
  padding: 1rem 1.5rem;
}

.podium-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.podium-row:last-child {
  border-bottom: none;
}

.podium-place {
  font-size: 18px;
}

.podium-amt {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
}

.podium-amt.first { color: var(--gold); }
.podium-amt.second { color: #C8C6C0; }
.podium-amt.third { color: #B87A4A; }

/* ==========================================================================
   12. JUDGES PROFILE MATRIX
   ========================================================================== */

#judges{
    background:#3b0c6a;
}

/* Grid */
.judges-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.8rem;
}

/* Card */
.judge-card{
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );

    border:1px solid rgba(255,255,255,.10);

    border-radius:24px;

    padding:2rem;

    transition:.35s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,.15);
}

/* Hover */
.judge-card:hover{

    transform:translateY(-8px);

    border-color:rgba(214,156,252,.35);

    box-shadow:
        0 20px 40px rgba(0,0,0,.22),
        0 0 25px rgba(214,156,252,.12);
}

/* Avatar */
.judge-avatar{
    width:72px;
    height:72px;

    border-radius:50%;

    background:#58337D;

    border:2px solid rgba(214,156,252,.25);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;
    font-weight:700;

    color:#D69CFC;

    margin-bottom:1.5rem;

    box-shadow:
        0 0 20px rgba(214,156,252,.15);
}

/* Name */
.judge-name{
    font-size:18px;
    font-weight:600;
    color:#fff;
    margin-bottom:.4rem;
}

/* Title */
.judge-title{
    font-size:13px;
    color:#D69CFC;
    margin-bottom:.3rem;
}

/* Organization */
.judge-org{
    font-size:13px;
    color:rgba(255,255,255,.65);
}

/* Category */
.judge-category{
    margin-top:1.2rem;
    padding-top:1rem;

    border-top:1px solid rgba(255,255,255,.08);

    font-size:11px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:rgba(255,255,255,.55);
}

/* Note Box */
.judges-note{
    margin-top:3rem;

    padding:2rem;

    border-radius:20px;

    background:
        rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.10);

    color:rgba(255,255,255,.75);

    line-height:1.8;
}

/* Mobile */
@media(max-width:768px){

    .judges-grid{
        grid-template-columns:1fr;
    }

    .judge-card{
        padding:1.5rem;
    }
}

/* ==========================================================================
   13. REGISTRATION MODULE & CONTROLS
   ========================================================================== */

#register{
    background:
        linear-gradient(
            135deg,
            #3b0c6a 0%,
            #4c157f 50%,
            #32105a 100%
        );

    position:relative;

    overflow:hidden;
}

/* Glow Background */
#register::before{
    content:'';

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(214,156,252,.12);

    top:-150px;
    right:-120px;

    filter:blur(80px);

    pointer-events:none;
}

/* Grid */
.register-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:6rem;

    align-items:start;

    position:relative;

    z-index:2;
}

/* Section Lead */
.reg-info .section-lead{
    color:rgba(255,255,255,.78);

    line-height:1.9;

    margin-bottom:3rem;
}

/* Pricing */
.reg-tiers{
    display:flex;

    flex-direction:column;

    gap:1rem;

    margin-bottom:3rem;
}

/* Pricing Card */
.reg-tier{
    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:1.4rem 1.6rem;

    border-radius:20px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(14px);

    transition:.3s;
}

/* Hover */
.reg-tier:hover{

    transform:translateY(-4px);

    border-color:rgba(214,156,252,.35);

    background:rgba(255,255,255,.10);

    box-shadow:
        0 10px 25px rgba(0,0,0,.18),
        0 0 25px rgba(214,156,252,.12);
}

/* Featured */
.reg-tier.featured{
    border-color:rgba(214,156,252,.45);

    background:
        linear-gradient(
            135deg,
            rgba(214,156,252,.14),
            rgba(255,255,255,.06)
        );
}

/* Tier Name */
.reg-tier-name{
    font-size:15px;

    font-weight:600;

    color:#fff;
}

/* Note */
.reg-tier-note{
    font-size:12px;

    color:rgba(255,255,255,.65);

    margin-top:3px;
}

/* Price */
.reg-tier-price{
    font-size:30px;

    font-weight:700;

    color:#D69CFC;
}

/* Process */
.reg-process{
    margin-top:3rem;
}

.reg-process h3{
    font-size:20px;

    color:#fff;

    margin-bottom:1.8rem;
}

/* Steps */
.process-step{
    display:flex;

    gap:1.2rem;

    padding:1.2rem 0;

    border-bottom:1px solid rgba(255,255,255,.08);
}

/* Number */
.ps-num{
    font-size:34px;

    font-weight:700;

    color:rgba(214,156,252,.35);

    min-width:40px;
}

/* Text */
.ps-text h4{
    font-size:15px;

    color:#fff;

    margin-bottom:4px;
}

.ps-text p{
    font-size:13px;

    color:rgba(255,255,255,.68);

    line-height:1.7;
}

/* Form Card */
.reg-form-card{
    position:sticky;

    top:84px;

    padding:3rem;

    border-radius:30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.10),
            rgba(255,255,255,.04)
        );

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.22),
        0 0 40px rgba(214,156,252,.10);
}

/* Form Heading */
.reg-form-card h3{
    font-size:36px;

    color:#fff;

    margin-bottom:.6rem;
}

/* Form Description */
.reg-form-card p{
    color:rgba(255,255,255,.72);

    margin-bottom:2rem;

    line-height:1.7;
}

/* Form Group */
.form-group{
    margin-bottom:1.2rem;
}

/* Label */
.form-label{
    display:block;

    font-size:10px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:rgba(255,255,255,.68);

    margin-bottom:.6rem;
}

/* Input */
.form-input,
.form-select{
    width:100%;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.10);

    color:#fff;

    padding:14px 16px;

    border-radius:14px;

    outline:none;

    transition:.3s;
}

/* Focus */
.form-input:focus,
.form-select:focus{
    border-color:#D69CFC;

    background:rgba(255,255,255,.09);

    box-shadow:
        0 0 18px rgba(214,156,252,.15);
}

/* Placeholder */
.form-input::placeholder{
    color:rgba(255,255,255,.42);
}

/* Row */
.form-row{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:1rem;
}

/* Select Option */
.form-select option{
    background:#3b0c6a;
}

/* Submit */
.form-submit{
    width:100%;

    background:#D69CFC;

    color:#3b0c6a;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    padding:17px;

    border:none;

    border-radius:16px;

    margin-top:.8rem;

    transition:.3s;
}

/* Hover */
.form-submit:hover{

    background:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 12px 25px rgba(214,156,252,.25);
}

/* Note */
.form-note{
    font-size:12px;

    color:rgba(255,255,255,.52);

    text-align:center;

    margin-top:1rem;

    line-height:1.7;
}

/* Mobile */
@media(max-width:768px){

    .register-grid{
        grid-template-columns:1fr;

        gap:4rem;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .reg-form-card{
        padding:2rem;
    }

    .reg-form-card h3{
        font-size:28px;
    }
}

/* ==========================================================================
   14. VENUE SECTION
   ========================================================================== */

#venue{
    background:#D69CFC;
    padding:7rem 0;
}

.venue-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:5rem;
    align-items:center;
}

/* Left Card */
.venue-visual{
    position:relative;

    background:#58337D;

    border-radius:24px;

    padding:3rem;

    aspect-ratio:4/3;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.12);

    box-shadow:
        0 15px 35px rgba(0,0,0,.15);

    transition:.3s ease;
}

.venue-visual:hover{
    transform:translateY(-5px);

    box-shadow:
        0 25px 50px rgba(0,0,0,.22);
}

/* Grid Lines */
.venue-lines{
    position:absolute;
    inset:0;

    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 39px,
            rgba(255,255,255,.03) 39px,
            rgba(255,255,255,.03) 40px
        ),

        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 39px,
            rgba(255,255,255,.03) 39px,
            rgba(255,255,255,.03) 40px
        );
}

/* Content */
.venue-visual-inner{
    text-align:center;
    position:relative;
    z-index:2;
}

.venue-icon{
    font-family:var(--font-display);
    font-size:90px;
    font-weight:700;
    letter-spacing:4px;

    color:rgba(255,255,255,.08);

    margin-bottom:1rem;
}

.venue-name-display{
    font-family:var(--font-display);

    font-size:38px;

    font-weight:700;

    letter-spacing:2px;

    color:#fff;

    margin-bottom:.5rem;
}

.venue-loc{
    font-size:14px;

    color:rgba(255,255,255,.75);

    letter-spacing:1px;
}

/* Right Side */
.venue-info h3{
    font-family:var(--font-display);

    font-size:48px;

    line-height:1;

    color:#58337D;

    margin-bottom:2rem;
}

.venue-details{
    display:flex;
    flex-direction:column;
    gap:0;
}

.venue-detail{
    display:flex;
    gap:2rem;

    padding:1.4rem 0;

    border-bottom:1px solid rgba(88,51,125,.15);

    transition:.3s ease;
}

.venue-detail:hover{
    padding-left:10px;
}

.venue-detail:last-child{
    border-bottom:none;
}

.vd-label{
    min-width:90px;

    font-size:10px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:700;

    color:#58337D;
}

.vd-val{
    font-size:16px;

    font-weight:600;

    color:#fff;
}

.vd-sub{
    font-size:13px;

    color:rgba(88,51,125,.85);

    margin-top:4px;

    line-height:1.6;
}

/* Mobile */
@media(max-width:768px){

    .venue-grid{
        grid-template-columns:1fr;
        gap:3rem;
    }

    .venue-visual{
        padding:2rem;
    }

    .venue-icon{
        font-size:65px;
    }

    .venue-name-display{
        font-size:28px;
    }

    .venue-info h3{
        font-size:34px;
    }

    .venue-detail{
        gap:1rem;
    }

    .vd-label{
        min-width:70px;
    }
}
/* ==========================================================================
   15. FAQ ACCORDION COMPONENT
   ========================================================================== */
#faq {
  background: #3b0c6a;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: none;
}

.faq-q span {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  padding-right: 1rem;
  line-height: 1.5;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  background: transparent;
  transition: transform 0.3s, background 0.2s;
}

/* Accordion Active States toggled by JavaScript */
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(214, 156, 252, 0.1);
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  padding-bottom: 1.5rem;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

/* ==========================================================================
   16. SPONSOR CONVERSION BANNER (CTA)
   ========================================================================== */

#sponsor-cta{
    background:
        linear-gradient(
            135deg,
            #D69CFC 0%,
            #C98AF0 50%,
            #B970EB 100%
        );

    position:relative;

    overflow:hidden;

    border-top:none;
    border-bottom:none;
}

/* Soft Glow */
#sponsor-cta::before{
    content:'';

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    top:-120px;
    right:-100px;

    filter:blur(70px);

    pointer-events:none;
}

/* Layout */
.sponsor-cta-inner{
    display:grid;

    grid-template-columns:1fr auto;

    gap:4rem;

    align-items:center;

    position:relative;

    z-index:2;
}

/* Heading */
.sponsor-cta-text h2{
    font-family:var(--font-display);

    font-size:clamp(38px,4vw,62px);

    letter-spacing:2px;

    color:#fff;

    line-height:1.05;

    margin-bottom:1.2rem;

    text-shadow:
        0 0 20px rgba(255,255,255,.18);
}

/* Highlight */
.sponsor-cta-text h2 span{
    color:#58337D;
}

/* Description */
.sponsor-cta-text p{
    font-size:15px;

    color:rgba(255,255,255,.88);

    max-width:560px;

    line-height:1.8;
}

/* Buttons */
.sponsor-cta-actions{
    margin-top:2rem;

    display:flex;

    gap:1rem;

    flex-wrap:wrap;
}

/* Sponsor Cards */
.sponsor-tiers-mini{
    display:flex;

    flex-direction:column;

    gap:1rem;

    min-width:320px;
}

/* Top Label */
.sponsor-tiers-mini div:first-child{
    color:#58337D !important;

    font-weight:700;
}

/* Card */
.sponsor-tier-mini{
    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:1.1rem 1.5rem;

    border-radius:18px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

    transition:.3s;
}

/* Hover */
.sponsor-tier-mini:hover{

    transform:translateY(-5px);

    background:rgba(255,255,255,.18);

    box-shadow:
        0 10px 25px rgba(88,51,125,.18);
}

/* Name */
.spm-name{
    font-size:14px;

    font-weight:600;

    color:#fff;

    margin-bottom:3px;
}

/* Price */
.spm-price{
    font-size:13px;

    color:#58337D;

    font-weight:700;
}

/* Slots */
.spm-slots{
    font-size:11px;

    color:rgba(255,255,255,.75);
}

/* Mobile */
@media(max-width:768px){

    .sponsor-cta-inner{
        grid-template-columns:1fr;
    }

    .sponsor-tiers-mini{
        min-width:100%;
    }

    .sponsor-cta-text h2{
        font-size:42px;
    }

    .sponsor-cta-actions{
        flex-direction:column;
    }
}
/* ==========================================================================
   17. GLOBAL SITE FOOTER
   ========================================================================== */

footer{
    background:
        linear-gradient(
            180deg,
            #D69CFC 0%,
            #C784F3 100%
        );

    padding:5rem 0 3rem;

    position:relative;

    overflow:hidden;
}

/* Soft Glow */
footer::before{
    content:'';

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    top:-120px;
    right:-100px;

    filter:blur(70px);

    pointer-events:none;
}

/* Grid */
.footer-grid{
    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:4rem;

    margin-bottom:4rem;

    position:relative;

    z-index:2;
}

/* Logo */
.footer-brand .nav-logo{
    font-size:40px;

    display:block;

    margin-bottom:1rem;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    letter-spacing:2px;

    text-shadow:
        0 0 20px rgba(255,255,255,.25);
}

/* Description */
.footer-brand p{
    font-size:14px;

    color:rgba(255,255,255,.85);

    line-height:1.8;

    max-width:320px;

    margin-bottom:2rem;
}

/* Social */
.social-links{
    display:flex;

    gap:1rem;
}

.social-link{
    width:42px;
    height:42px;

    border-radius:12px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    text-decoration:none;

    font-size:13px;

    transition:.3s;
}

.social-link:hover{

    transform:translateY(-4px);

    background:#58337D;

    color:#fff;

    box-shadow:
        0 8px 20px rgba(88,51,125,.35);
}

/* Heading */
.footer-col h4{
    font-size:11px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#58337D;

    margin-bottom:1.5rem;

    font-weight:700;
}

/* List */
.footer-col ul{
    list-style:none;

    display:flex;

    flex-direction:column;

    gap:.9rem;
}

/* Links */
.footer-col a{
    font-size:14px;

    color:rgba(255,255,255,.88);

    text-decoration:none;

    transition:.3s;
}

.footer-col a:hover{
    color:#58337D;

    padding-left:6px;
}

/* Bottom */
.footer-bottom{
    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-top:2rem;

    border-top:1px solid rgba(255,255,255,.18);

    font-size:12px;

    color:rgba(255,255,255,.9);

    position:relative;

    z-index:2;
}

/* Mobile */
@media(max-width:768px){

    .footer-grid{
        grid-template-columns:1fr;

        gap:2.5rem;
    }

    .footer-bottom{
        flex-direction:column;

        gap:1rem;

        text-align:center;
    }

    .footer-brand .nav-logo{
        font-size:34px;
    }
}

/* ==========================================================================
   18. INTERACTION & SCROLL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sequencing Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   19. RESPONSIVE MEDIA QUERIES (TABLETS & DESKTOP DOWN)
   ========================================================================== */
@media (max-width: 1024px) {
  /* Layout transformation: Two-column stacked interfaces */
  .hero-inner,
  .about-grid,
  .hiring-grid,
  .register-grid,
  .format-grid,
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    /*display: none;*/
  }

  /* Grid adaptations to mid-screen display sizes */
  .cats-grid,
  .prizes-grid,
  .judges-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sponsor-cta-inner {
    grid-template-columns: 1fr;
  }

  .sponsor-tiers-mini {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: auto;
  }
}

/* ==========================================================================
   20. RESPONSIVE MEDIA QUERIES (SMARTPHONES & SMART DEVICES)
   ========================================================================== */
@media (max-width: 768px) {
    .btn-primary,.btn-secondary{
        margin: auto;
    }
    .hero-stat-num{
        text-align:center;
    }
  nav {
    padding: 0 1.5rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .container {
    padding: 0 1.5rem;
  }

  section {
    padding: 5rem 0;
  }

  .hero-inner {
    padding: 0 1.5rem;
  }

  /* Hero statistical structures */
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    padding: 0 0 1.5rem;
    padding-left: 0 !important;
  }

  .hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Complete linear collapse rules for grid panels */
  .cats-grid,
  .prizes-grid,
  .judges-grid,
  .faq-grid,
  .form-row,
  .footer-grid,
  .hiring-booth-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Disable Custom Graphic Cursor Layer on Touch devices */
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }

  /* Responsive Offcanvas Menu Configuration */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    gap: 2rem;
    background: rgba(13, 10, 20, 0.98);
    backdrop-filter: blur(20px);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 42px;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
  }

  .mobile-menu a:hover {
    color: var(--gold);
  }
}
