/* ==========================================================================
   Students Global Summit — CLEANED style.css
   - Structure: variables → base → components
   - Responsive rules placed immediately under each selector
   ========================================================================== */

/* =========================
   VARIABLES (single place)
   ========================= */
:root {
  --max-width: 1200px;
  --pad: 18px;
  --accent: #d400ff;
  --accent-strong: #ff6dff;
  --accent-glow: rgba(212, 0, 255, 0.25);
  --muted: #9ea4ac;
  --muted-2: #a1a1b0;
  --bg-1: #07050a;
  --bg-2: #0e0028;
  --bg-3: #1a003a;
  --glass: rgba(255, 255, 255, 0.05);
  --white: #fff;
  --radius: 20px;
  --transition: all .25s ease;
  --header-h: 64px;
  --theme-art: url('ai2.png');
  --prize-art: url('prize-bg.jpg');
}

/* =========================
   BASE / RESET
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  height: 100%
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--white);
  background: radial-gradient(circle at 30% 20%, #120018, #090011 60%, #000);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block
}

/* small global utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad)
}

.section {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px var(--pad);
  box-sizing: border-box
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes floaty {
  from {
    transform: translateY(-10px)
  }

  to {
    transform: translateY(10px)
  }
}

/* =========================
   HEADER / NAV
   ========================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  height: var(--header-h);
  font-size: larger;
  background: linear-gradient(180deg, rgba(8, 6, 12, 0.45), rgba(6, 4, 8, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

header .brand {
  font-weight: 900;
  font-size: x-large;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: .5px;

  white-space: nowrap;
}

header nav {
  display: flex;
  gap: 24px;
  align-items: center
}

header nav a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  padding: 6px 8px;
  position: relative;
  display: inline-block;
  transition: var(--transition);
  background: linear-gradient(270deg, #a855f7, #ec4899, #00c6ff);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s ease infinite;
  font-weight: 700;
}

header nav a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 4px;
  height: 3px;
  border-radius: 6px;
  background: linear-gradient(90deg, #a855f7, #ec4899, #00c6ff);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s cubic-bezier(.2, .9, .3, 1);
  opacity: .95;
  pointer-events: none;
}

header nav a:hover::after,
header nav a:focus::after {
  transform: scaleX(1)
}

header .cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  border: 2px solid rgba(184, 75, 255, 0.35);
  background: transparent;
  box-shadow: 0 0 10px rgba(184, 75, 255, 0.4);
  transition: var(--transition);
  text-decoration: none
}

header .cta:hover {
  background: linear-gradient(90deg, #b84bff, #7b2ff7);
  transform: translateY(-2px)
}

/* responsive for header */
@media (max-width:900px) {
  header {
    padding: 12px 5vw;
    height: var(--header-h);
    max-width: 70vw;
    justify-content: space-around;
    align-items: center;
    display: flex;
  }
  header .cta{
    margin-left:45vw;
    padding: 0px 15px
  }

  header nav {
    display: none
  }
  header .brand{
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    background: transparent;
    border: 0;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer
  }
}

@media (min-width:901px) {
  .nav-toggle {
    display: none
  }

  header nav {
    display: flex
  }
}

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 6vw 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-3));
  background-image: url('ai.png'), linear-gradient(180deg, var(--bg-1), var(--bg-3));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(5, 2, 18, 0.25) 0%, rgba(5, 2, 12, 0.78) 68%);
  pointer-events: none;
}
.hero-title{
color: var(--muted);


  display: inline-block;
  transition: var(--transition);
  background: linear-gradient(270deg, #a855f7, #ec4899, #00c6ff);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s ease infinite;
  font-weight: 700;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  min-width: 80vw
}

.hero h1 {
  font-size: 150px;
  line-height: 0.9;
  letter-spacing: -3px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--accent), #ff66ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero h2 {
  font-size: 75px;
  text-transform: uppercase;
  font-weight: 700
}

.hero p {
  color: var(--muted);
  font-size: 1.7rem;
  margin-top: 12px;
  color:#ffffff;
}

.outline-25 {
  width: 380px;
  margin-bottom: 300px;
  opacity: .9;
  filter: drop-shadow(0 8px 20px rgba(212, 0, 255, 0.3));
  animation: floaty 6s ease-in-out infinite alternate
}
/* .hero-date {
  color:violet;
} */
.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.link-more{
  color:wheat;
  font-size: x-large;
  text-decoration: none;
}

/* hero responsive */
@media (max-width:1100px) {
  .hero {
    padding-top: 120px;
    min-height: 72vh
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .outline-25 {
    display: none
  }

  .hero h1 {
    font-size: 4.5rem
  }
}

@media (max-width:720px) {
  body {
    padding-top: var(--header-h)
  }

  .hero {
    padding: 90px 4vw 40px;
    align-items: flex-start
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.6rem)
  }

  .hero h2 {
    font-size: clamp(1.1rem, 5vw, 1.5rem)
  }

  .hero p {
    max-width: 90%
  }
}

/* =========================
   ENDORSE / LOGOS
   ========================= */
/* =========================
   ENDORSE / LOGOS (FINAL)
   ========================= */
.endorse-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem 1rem;
  padding-bottom: 0px;
  background: #000;
}

.endorse-section img {
  max-width: 80px;        /* FIXED SIZE */
  height: auto;
  object-fit: contain;
  transition: .3s ease;
  filter: brightness(1) contrast(1.1);
}

/* FIRST & LAST LOGO WHITE */
.endorse-section img:first-child,
.endorse-section img:last-child {
  filter: brightness(0) invert(1); /* makes white */
}
.endorse-section img:last-child {
  max-width: 50px;
}

.endorse-section img:hover {
  transform: scale(1.08);
  filter: brightness(1.2);
}

@media(max-width:600px) {
  .endorse-section {
    gap: 1.3rem;
    padding: 1.8rem 0.5rem;
  }
  .endorse-section img {
    width: 95px;
  }
}


/* =========================
   MISSION / METRICS
   ========================= */
.mission-hero {
  padding: 120px 6vw;
  padding-top: 0px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.98));
  position: relative;
  overflow: hidden
}

.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 48px;
  align-items: center
}

.mission-lead {
  font-weight: 800;
  color: white;
  font-size: 30px;
  /* max-width: 1000px; */
  margin-left: 1.5rem;
}

.mission-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  align-items: end;
  margin-top: 6vh;
  padding: 0 6vw
}

.metric-num {
  font-weight: 900;
  font-size: clamp(28px, 6.5vw, 56px);
  color: #e80ecb;
  line-height: 0.9
}

.metric-sub {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600
}

/* mission responsive */
@media(max-width:1100px) {
  .mission-inner {
    gap: 32px;
    padding-top: 80px;
    padding-bottom: 60px
  }

  .mission-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px
  }
}

@media(max-width:640px) {
  .mission-metrics {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .mission-lead {
    font-size: 20px;
    margin-left: 4vw;
    margin-right: 4vw
  }
}

/* =========================
   THEME HERO
   ========================= */
/* ===== Enhanced Theme CSS (append to style.css) ===== */
.theme-pro.enhanced-theme {
  position: relative;
  padding: 120px 6vw;
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(2,2,8,0.5), rgba(1,1,6,0.85));
}

/* video behind everything */
.theme-video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; filter: contrast(1.02) saturate(1.05) brightness(0.78); }

/* film grain filter overlay (apply as filter to a pseudo) */
.theme-grain { position:absolute; inset:0; z-index:6; pointer-events:none; filter:url(#grain); opacity:0.06; }

/* soft color glow */
.theme-glow { position:absolute; inset:0; z-index:1;
  background: radial-gradient(50% 40% at 20% 20%, rgba(212,0,255,0.12), transparent 12%),
              radial-gradient(40% 30% at 80% 80%, rgba(0,198,255,0.08), transparent 18%);
  mix-blend-mode: screen; pointer-events:none;
}

/* vignette */
.theme-vignette { position:absolute; inset:0; z-index:2; background: radial-gradient(60% 50% at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 70%); pointer-events:none; }

/* content grid */
.theme-inner { position:relative; z-index:5; display:grid; grid-template-columns: 1fr 520px; gap:48px; align-items:center; max-width:1200px; margin:0 auto; }

/* left column */
.theme-left { color: #fff; padding: 6vh 0; }
.theme-kicker { display:inline-block; font-weight:800; color: #ffd6ff; background: rgba(212,0,255,0.06); padding:6px 12px; border-radius:8px; letter-spacing:1.5px; margin-bottom:14px; }
.theme-headline { font-size: clamp(28px, 4.5vw, 44px); line-height:1.02; margin:6px 0 18px; font-weight:900; background: linear-gradient(90deg,#fff,#ffd4ff); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.theme-headline .accent { color: #d4fffb; -webkit-text-fill-color:transparent; background: linear-gradient(90deg,#d400ff,#00c6ff); -webkit-background-clip:text; }

.theme-lead { color: rgba(255,255,255,0.88); font-size:1.05rem; max-width:62ch; margin-bottom:22px; }

/* features list */
.theme-features { list-style:none; display:grid; gap:12px; margin: 18px 0 6px; padding:0; }
.theme-features li { display:flex; gap:12px; align-items:flex-start; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); padding:12px 14px; border-radius:12px; border:1px solid rgba(255,255,255,0.04); backdrop-filter:blur(8px); }
.theme-features li strong { color: #fff; font-weight:800; min-width:130px; display:block; }
.theme-features li span { color: rgba(255,255,255,0.75); font-size:0.95rem; }

/* CTAs */
.theme-ctas { margin-top:18px; display:flex; gap:12px; }
.theme-ctas .btn-ghost { border:1px solid rgba(255,255,255,0.12); background:transparent; color:#fff; }

/* right column — art card */
.theme-right { display:flex; justify-content:center; align-items:center; padding:6vh 0; }
.theme-art-card { width:420px; border-radius:20px; overflow:hidden; position:relative; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border:1px solid rgba(255,255,255,0.06); box-shadow: 0 30px 80px rgba(0,0,0,0.7); transition: transform .45s cubic-bezier(.2,.9,.25,1), box-shadow .35s; transform-style:preserve-3d; }
.theme-art-card:hover { transform: translateY(-12px) rotateX(2deg) scale(1.02); box-shadow: 0 46px 120px rgba(0,0,0,0.8); }

.theme-card-inner { padding:26px; display:flex; flex-direction:column; gap:16px; align-items:center; text-align:center; }
.theme-emblem { width:180px; height:auto; display:block; margin:6px auto 8px; filter:drop-shadow(0 12px 36px rgba(0,0,0,0.6)); }
.theme-card-inner .core { fill: url(#tgrad); filter: drop-shadow(0 8px 24px rgba(212,0,255,0.12)); }

.card-copy h3 { margin:0; font-size:1.2rem; color:#fff; font-weight:800; }
.card-copy p { color: rgba(255,255,255,0.82); font-size:0.95rem; margin:6px 0 0; }

/* badges */
.card-badges { display:flex; gap:8px; margin-top:6px; flex-wrap:wrap; justify-content:center; }
.card-badges .badge { padding:8px 10px; border-radius:999px; background: linear-gradient(90deg, rgba(212,0,255,0.14), rgba(0,198,255,0.08)); color:#fff; font-weight:700; font-size:0.82rem; border:1px solid rgba(255,255,255,0.04); }

/* small screens */
@media (max-width:1000px){
  .theme-inner { grid-template-columns: 1fr; gap:28px; text-align:center; }
  .theme-left { order:2; }
  .theme-right { order:1; }
  .theme-art-card { width:92%; margin:0 auto; }
  .theme-features li { flex-direction:column; align-items:flex-start; }
}

/* entrance states (used by JS/GSAP fallback) */
.enhanced-theme .reveal { opacity:0; transform: translateY(18px) scale(.995); transition: all .72s cubic-bezier(.22,1,.36,1); }
.enhanced-theme .reveal.in { opacity:1; transform:none; }

/* optional micro-interaction for badges */
.card-badges .badge { transform: translateY(6px); opacity:0; transition: transform .46s cubic-bezier(.2,.9,.25,1), opacity .46s; }
.card-badges .badge.show { transform:none; opacity:1; }


/* =========================
   PERKS (list)
   ========================= */
/* ==========================================================
   ULTRA-PREMIUM FUTURISTIC PERKS SECTION (UPGRADED)
   ========================================================== */

.perks-pro {
  padding: 140px 7vw;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 0, 200, 0.12), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(0, 180, 255, 0.10), transparent 60%),
    linear-gradient(180deg, #040414, #06061a 60%, #050510);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Floating ambient glow */
.perks-pro::before,
.perks-pro::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(150, 0, 255, 0.25), transparent 70%);
  filter: blur(120px);
  opacity: 0.4;
  animation: floatGlow 16s ease-in-out infinite alternate;
}
.perks-pro::before {
  top: -80px;
  left: -60px;
}
.perks-pro::after {
  bottom: -80px;
  right: -40px;
}

@keyframes floatGlow {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px, -40px) scale(1.15); }
}

/* Header styling */
.perks-pro-header {
  text-align: center;
  margin-bottom: 70px;
}

.perks-pro .label {
  color: #d18cff;
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: 700;
}

.perks-pro .title {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  margin: 12px 0;
  background: linear-gradient(90deg, #ff8cff, #8b5dff, #58d4ff);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.perks-pro .subtitle {
  max-width: 650px;
  margin: auto;
  font-size: 18px;
  color: #cfd0f6;
  opacity: 0.9;
}

/* Grid layout */
.perks-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 34px;
}

/* Card styling */
.perk-card {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Animated gradient border */
.perk-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    #ff00dd 0%,
    #7f00ff 40%,
    #00d4ff 100%
  );
  z-index: -1;
  opacity: 0;
  transition: 0.4s ease;
}

/* Glow hover effect */
.perk-card:hover::before {
  opacity: 0.5;
  filter: blur(16px);
}

.perk-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 22px 40px rgba(0,0,0,0.35),
              0 0 60px rgba(180, 0, 255, 0.25),
              0 0 40px rgba(0, 200, 255, 0.18);
}

/* Shine sweep animation */
.perk-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(75deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.perk-card:hover::after {
  left: 200%;
}

/* Icon */
.perk-icon {
  font-size: 42px;
  margin-bottom: 16px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

/* Title + text */
.perk-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.perk-card p {
  font-size: 16px;
  color: #dcdcf5;
  line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .perks-pro {
    padding: 90px 6vw;
  }
  .perk-card {
    padding: 26px;
  }
}


/* =========================
   WHO (cards)
   ========================= */
.who-hero {
  position: relative;
  padding: 64px 6vw 120px;
  background: linear-gradient(180deg, rgba(3, 4, 12, 0.92), rgba(2, 3, 8, 0.96));
  overflow: hidden
}

.who-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 34px
}

.who-top .kicker {
  color: var(--accent);
  font-weight: 700
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 12vh;
  padding: 0 2vw 10vh
}

.who-card {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(255, 255, 255, 0.02));
  border-radius: 14px;
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 60px rgba(2, 6, 23, 0.6)
}

.who-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(20, 0, 30, 0.08), rgba(255, 255, 255, 0.01));
  color: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5)
}

.who-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff
}

.who-card p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6
}

/* who responsive */
@media(max-width:1100px) {
  .who-cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10vh;
    padding-bottom: 8vh
  }
}

@media(max-width:640px) {
  .who-cards {
    grid-template-columns: 1fr;
    padding-bottom: 6vh;
    margin-top: 8vh
  }

  .who-card {
    padding: 18px
  }
}

/* hover accent for icon */
.who-card:hover .who-icon {
  background: linear-gradient(90deg, #ff9aff, #d400ff);
  color: #000
}

/* =========================
   SPEAKERS (cards)
   ========================= */

.speakers-section {
  padding: 100px 0;
  position: relative;
}

.speakers-grid {
  display: flex;
  flex-direction: column;
  gap: 48px; /* space between cards */
  perspective: 2000px;
  margin-top: 60px;
}

/* Base card — smaller, cleaner */
.speaker-card {
  width: 60%;
  margin: 0 auto;
  background: rgba(20, 20, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 26px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  transition:
    transform 0.45s cubic-bezier(.22,1,.36,1),
    opacity 0.35s ease,
    box-shadow 0.45s ease,
    background 0.35s ease;
    
  transform-origin: center;
  opacity: 0.6;
}

/* Active card — perfect size, beautiful glow */
.speaker-card.is-active {
  transform: translateZ(70px) scale(1.04);
  opacity: 1;

  background: rgba(40, 40, 52, 0.7);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
}

/* Other cards slightly shrink but stay elegant */
.speaker-card.shrink {
  transform: scale(0.94);
  opacity: 0.45;
}

/* Speaker image — slightly smaller */
.speaker-card img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 4px;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

/* Name */
.speaker-name {
  font-size: 1.28rem;
  font-weight: 700;
  margin-top: 0;
  color: #fff;
}

/* Role */
.speaker-role {
  font-size: 0.95rem;
  color: #d8d8d8;
  margin-top: -4px;
}

/* Bio */
.speaker-bio {
  font-size: 0.9rem;
  line-height: 1.45;
  color: #ececec;
  max-width: 600px;
}

/* Hover effect — smooth and minimal */
.speaker-card:hover {
  transform: translateZ(90px) scale(1.07);
  background: rgba(55, 55, 70, 0.82);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

/* Responsive beautification */
@media (max-width: 900px) {
  .speaker-card {
    width: 88%;
  }
}
@media (max-width: 600px) {
  .speaker-card {
    width: 94%;
    padding: 22px;
  }
  .speaker-card img {
    width: 80px;
    height: 80px;
  }
}
.speaker-card {
  opacity: 0.85;
  transform: scale(0.96);
}
/* ==============================
   Speakers — Spotlight effect
   ============================== */

/* spotlight element (placed in DOM by JS) */
.speakers-section {
  position: relative; /* ensure parent is positioned */
  z-index: 1;
}

/* the spotlight blob */
.speakers-section .spk-spotlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 420px;   /* base size - JS will scale/translate */
  height: 240px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(64px) saturate(1.2);
  transform: translate(-50%, -50%) scale(0.6);
  transition: transform 650ms cubic-bezier(.2,.9,.25,1), opacity 420ms ease;
  opacity: 0;
  mix-blend-mode: screen;
  z-index: 0; /* sits behind cards (cards z-index > 0) */
  background: radial-gradient(60% 60% at 50% 40%,
    rgba(212,0,255,0.18) 0%,
    rgba(212,0,255,0.12) 12%,
    rgba(0,198,255,0.08) 34%,
    rgba(0,0,0,0) 70%);
  box-shadow: 0 40px 120px rgba(212,0,255,0.06), 0 20px 60px rgba(0,198,255,0.03);
}

/* when spotlight is active */
.speakers-section .spk-spotlight.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* slightly stronger when centered */
.speakers-section .spk-spotlight.strong {
  filter: blur(44px) saturate(1.25);
  background: radial-gradient(60% 60% at 50% 40%,
    rgba(212,0,255,0.26) 0%,
    rgba(212,0,255,0.18) 12%,
    rgba(0,198,255,0.12) 34%,
    rgba(0,0,0,0) 70%);
  box-shadow: 0 60px 160px rgba(212,0,255,0.09), 0 30px 90px rgba(0,198,255,0.04);
}

/* keep spotlight subtle on very small screens */
@media (max-width:720px) {
  .speakers-section .spk-spotlight { width: 320px; height: 180px; filter: blur(56px); }
}

/* reduced motion fallback: hide animated spotlight & use static accent */
@media (prefers-reduced-motion: reduce) {
  .speakers-section .spk-spotlight { transition: none; opacity: 0 !important; display:none; }
}
/* Center-align all speaker content */
.speaker-card {
  text-align: center;                 /* center text */
  display: flex;
  flex-direction: column;
  align-items: center;                 /* center elements horizontally */
  justify-content: center;             /* ensure content is centered vertically */
}

/* Center the avatar */
.speaker-card img {
  margin: 0 auto;                      /* force avatar center */
  display: block;
}

/* Center name */
.speaker-name {
  text-align: center;
  width: 100%;
}

/* Center role */
.speaker-role {
  text-align: center;
  width: 100%;
}

/* Center bio */
.speaker-bio {
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
}
/* Improved vertical spacing */
.speaker-card img {
  margin-top: 6px;
  margin-bottom: 14px;
}

.speaker-name {
  margin-top: 4px;
  margin-bottom: 6px;
}

.speaker-role {
  margin-bottom: 12px;
}

.speaker-bio {
  line-height: 1.5;
  margin-bottom: 10px;
}
/* ============================
   SPEAKERS — Header Styling
============================ */

.speakers-head {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 3;
}

.speakers-head .label {
  font-weight: 800;
  font-size: 40px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d400ff;
  opacity: 0.95;
}

.speakers-title {
  font-size: 3rem;
  font-weight: 900;
  margin: 10px 0 14px;
  line-height: 1.1;

  /* GRADIENT TEXT */
  background: linear-gradient(90deg, #d400ff, #ff78f8, #26d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.speakers-lead {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.88;
  color: #ddd;
  line-height: 1.6;
}

/* Glowing soft line under title */
.speakers-head::after {
  content: "";
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #d400ff, #ff6dff, #26d9ff);
  display: block;
  margin: 28px auto 0;
  border-radius: 999px;
  opacity: 0.55;
  filter: blur(1px);
}


  
/* ==========================================================
   HYPER-PREMIUM PRIZE SECTION — THE BEST POSSIBLE VERSION
   ========================================================== */

.prize-hero {
  padding: 180px 6vw;
  background:
    linear-gradient(180deg, #03030d, #050516),
    radial-gradient(circle at 20% 0%, rgba(255,0,200,0.18), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(0,200,255,0.15), transparent 60%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Floating aurora waves */
.prize-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(255,0,180,0.08),
    rgba(0,150,255,0.08) 80%
  );
  filter: blur(120px);
  opacity: 0.5;
  animation: auroraMove 14s ease-in-out infinite alternate;
}
@keyframes auroraMove {
  from { transform: translateX(-8%); }
  to   { transform: translateX(8%); }
}

/* Floating stars / particles */
.prize-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='800' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' r='1' fill='white'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: screen;
  animation: starsFloat 22s linear infinite;
}
@keyframes starsFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-40%); }
}

.prize-inner {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 3;
}

/* Header */
.prize-top {
  text-align: center;
  margin-bottom: 90px;
}

.prize-top .kicker {
  color: #ff9aff;
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 37px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255,100,255,0.5);
}

.prize-top h2 {
  margin: 14px 0;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  background: linear-gradient(90deg, #ff5dff, #7a72ff, #4ad4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 36px rgba(100,0,255,0.3);
}

.prize-lead {
  max-width: 680px;
  margin: auto;
  font-size: 20px;
  opacity: 0.9;
  color: #dadcff;
}

/* Prize amount box */
.prize-box-wrap {
  text-align: center;
  margin-top: 70px;
}

.prize-label {
  color: #c8c8ff;
  font-size: 18px;
  margin-bottom: 10px;
}

.prize-box {
  margin: auto;
  width: 380px;
  padding: 32px;
  border-radius: 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);

  box-shadow:
    0 0 50px rgba(150,0,255,0.25),
    inset 0 0 40px rgba(255,255,255,0.08),
    0 20px 50px rgba(0,0,0,0.45);

  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(6deg);
  transition: 0.6s ease;
}
.prize-box:hover {
  transform: perspective(1200px) rotateX(0deg) scale(1.03);
}

.prize-value {
  font-size: 50px;
  font-weight: 900;
  background: linear-gradient(90deg, #ff80ff, #58d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating coins */
.coin {
  position: absolute;
  width: 200px;
  opacity: 0.98;
  z-index: 2;
  animation: coinFloat 6s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
}
.coin-left { left: 6%; top: 30%; animation-delay: 0.4s; }
.coin-right { right: 5%; top: 38%; animation-delay: 1s; }
.coin-top { left: 46%; top: 10%; width: 95px; animation-delay: 1.8s; }

@keyframes coinFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-18px) rotate(12deg); }
}

/* Bottom columns */
.prize-bottom {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 45px;
}

.prize-col {
  padding: 40px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glowing holo border */
.prize-col::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    130deg,
    #ff00dd,
    #7f00ff,
    #00b7ff,
    #00ffcc
  );
  opacity: 0;
  transition: 0.5s ease;
  filter: blur(16px);
}

.prize-col:hover::before {
  opacity: 0.5;
}

.prize-col:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.4),
    0 0 60px rgba(120,0,255,0.35);
}

/* Icons */
.prize-col .icon {
  font-size: 52px;
  margin-bottom: 14px;
  text-shadow: 0 0 14px rgba(255,255,255,0.4);
}

/* Titles */
.prize-col h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Text */
.prize-col p {
  font-size: 17px;
  line-height: 1.6;
  color: #e0e0ff;
  opacity: 0.9;
}

/* Button */
.register-cta {
  margin-top: 80px;
  text-align: center;
}

.register-btn {
  padding: 18px 40px;
  font-size: 20px;
  border-radius: 100px;
  background: linear-gradient(90deg, #ff00dd, #7b00ff);
  color: white;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow:
    0 12px 30px rgba(150,0,255,0.45),
    0 0 40px rgba(0,200,255,0.25);
}
.register-btn:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 18px 40px rgba(150,0,255,0.55),
    0 0 50px rgba(0,200,255,0.35);
}

/* =========================
   SCHEDULE
   ========================= */
/* -------------------------------
   Schedule section — Isolated CSS
   Works with your HTML + DefensiveCinematicSchedule JS
   Target: #schedule.schedule-cinematic
   - Styles only elements under #schedule
   - Provides responsive, elegant cinematic look
------------------------------- */

/* =========================
   SCHEDULE — Responsive Fixes + Cinematic Styles
   ========================= */

/* enforce box-sizing for predictable widths inside this component */
#schedule, #schedule * { box-sizing: border-box; }

/* section-scoped variables */
#schedule {
  --muted: #9ea9b6;
  --text: #e9f0fb;
  --accent1: #7c3aed;
  --accent2: #ec4899;
  --card-w: 360px;
  --card-h: 220px;
  --gap: 26px;
  --radius: 14px;
  --shadow: 0 26px 60px rgba(3,8,20,0.6);
}

/* wrapper */
#schedule.schedule-cinematic { padding: 56px 0; }
#schedule .schedule-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  align-items: start;
  padding: 0 18px; /* prevent page-edge overflow */
}

/* small screens: column layout */
@media (max-width: 640px) {
  #schedule .schedule-wrap {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0 12px;
  }
}

/* left side */
#schedule .schedule-side { padding: 6px 8px; }
#schedule .label {
  display: inline-block;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-weight: 700;
  font-size: 35px;
  border: 1px solid rgba(255,255,255,0.02);
  color:#d400ff;
}
#schedule .schedule-title {
  margin: 12px 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.08;
}
#schedule .schedule-sub {
  margin: 0;
  color: var(--muted);
  max-width: 300px;
  font-size: 14px;
}

/* day buttons */
#schedule .schedule-days {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#schedule .day-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  color: var(--muted);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s;
  font-weight: 700;
  text-align: center;
}
#schedule .day-btn span { font-size: 16px; }
#schedule .day-btn small { display: block; font-size: 12px; color: var(--muted); opacity: .9; font-weight: 600; }
#schedule .day-btn:hover { transform: translateY(-3px); }
#schedule .day-btn.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(124,58,237,0.12), rgba(236,72,153,0.06));
  box-shadow: 0 14px 36px rgba(6,10,20,0.55);
  border-color: rgba(124,58,237,0.12);
}

/* TIMELINE / PLAYER - ensure no page-level horizontal overflow */
#schedule .schedule-timeline {
  position: relative;
  overflow: hidden;     /* kill any accidental horizontal overflow */
  min-height: var(--card-h);
  padding: 28px 10px;
  width: 100%;
}

/* cards player */
#schedule .cards-player {
  perspective: 1500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 6px;
  overflow-y: auto;
  overflow-x: hidden;   /* important: prevent horizontal overflow */
  scrollbar-width: thin;
  max-height: 620px;
}

/* hide scrollbar but preserve scroll behavior (webkit) */
#cardsPlayer { overflow-y: auto; -ms-overflow-style: none; scrollbar-width: none; }
#cardsPlayer::-webkit-scrollbar { width: 0; height: 0; background: transparent; }

/* ---------normally testing pasting */

/* Track Container */
#schedule .cards-track {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  align-items: center;
  
  overflow-y: scroll; /* or auto — required for scrollbar to exist */

  /* Hide scrollbar across browsers */
  -ms-overflow-style: none;  /* IE & Edge */
  scrollbar-width: none;     /* Firefox */
}

/* Chrome, Safari, Opera */
#schedule .cards-track::-webkit-scrollbar {
  display: none;
}




/* CARD - desktop/horizontal defaults */
#schedule .card {
  width: var(--card-w);
  min-height: 175px;
  height: var(--card-h);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .72s cubic-bezier(.2,.9,.25,1), box-shadow .25s, opacity .25s;
  transform-origin: center center;
}
#schedule .card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: 12px;
  width: 6px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--accent1), var(--accent2));
  opacity: 0.95;
}

/* card content */
#schedule .card-layer { display:flex; flex-direction:column; gap:8px; transform: translate3d(0,0,0); transition: transform .36s ease-out; }
#schedule .time { font-size: 13px; font-weight: 700; color: var(--muted); }
#schedule .title { font-size: 18px; font-weight: 800; color: var(--text); margin-top: 4px; line-height: 1.06; }
#schedule .desc { font-size: 14px; color: var(--muted); margin-top: 6px; opacity: 0.95; }

/* dots */
#schedule .dots { display: flex; gap: 8px; justify-content: center; margin-top: 10px; }
#schedule .dots button { width: 10px; height: 10px; border-radius: 999px; border: none; background: rgba(255,255,255,0.07); cursor: pointer; }
#schedule .dots button.active { background: linear-gradient(90deg, var(--accent1), var(--accent2)); box-shadow: 0 6px 16px rgba(124,58,237,0.08); }

#schedule .card.center { box-shadow: 0 40px 88px rgba(3,8,20,0.8); }

/* focus outlines */
#schedule .day-btn:focus-visible,
#schedule .controls .nav:focus-visible,
#schedule .cards-player:focus-visible,
#schedule .dots button:focus-visible {
  outline: 3px solid rgba(124,58,237,0.14);
  outline-offset: 3px;
}

/* -------------------------
   RESPONSIVE: STACK VERTICAL ON SMALL SCREENS
   (switch to vertical layout at <= 900px)
------------------------- */
@media (max-width: 900px) {
  /* reduce card size vars safely */
  #schedule { --card-w: 100%; --card-h: auto; --gap: 18px; }

  /* force vertical track */
  #schedule .cards-track {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch;
    transform: none !important;
    transition: none !important;
  }

  /* cards become full width but limited to a premium max */
  #schedule .card {
    width: 100% !important;
    max-width: 720px;
    height: auto;
    padding: 18px;
    margin: 0 auto;
    transform: none !important;
  }

  /* move side & timeline ordering for narrow screens */
  #schedule .schedule-wrap { gap: 18px; }
  #schedule .schedule-side { order: 2; }
  #schedule .schedule-timeline { order: 1; padding: 12px 6px; min-height: auto; }
  #schedule .schedule-days { flex-direction: row; gap: 10px; justify-content: center; }

  /* disable pointer tilt states on mobile */
  #schedule .card.tilt { will-change: auto; transform: none !important; }
  #schedule .card-layer { transform: none !important; }
}

/* even narrower tweaks */
@media (max-width: 600px) {
  #schedule { --card-w: 100%; --card-h: auto; --gap: 12px; }
  #schedule .day-btn { padding: 10px; flex: 1; min-width: 0; }
  #schedule .card::before { left: 8px; top: 8px; bottom: 8px; width: 5px; }
  #schedule .time { font-size: 12px; }
  #schedule .title { font-size: 16px; }
  #schedule .desc { font-size: 13px; }
}

/* utility: non-intrusive muted */
#schedule .muted { color: var(--muted); }



/* =========================
   FAQ (accordion)
   ========================= */
/* =========================
   FAQ — Elegant Accordion
   ========================= */

.faq-section { padding: 84px 0; position: relative; color: #fff; }
.faq-head .label { color: #d29aff; font-weight:700; letter-spacing:1px;  font-size: 40px; display:block; margin-bottom:12px; }
.faq-title { font-size: clamp(28px, 4.6vw, 44px); margin:0 0 10px; line-height:1.02; font-weight:800; }
.faq-lead { color: rgba(255,255,255,0.78); margin-bottom:28px; font-size:1.05rem; max-width:70ch; }

/* FAQ list */
.faq-list { display: grid; gap: 18px; }

/* each item */
.faq-item { border-radius: 20px; overflow: visible; position: relative; }

/* question button */
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  padding: 24px 26px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight:700;
  color: #fff;
  transition: box-shadow .36s cubic-bezier(.2,.9,.2,1), transform .28s cubic-bezier(.2,.9,.2,1), border-color .28s ease;
  box-shadow: 0 6px 20px rgba(4,6,14,0.45);
}

/* question text */
.faq-q-text { text-align:left; display:block; flex:1; margin-right:18px; }

/* caret (SVG injected via CSS background for crispness) */
.faq-caret {
  width: 22px; height: 22px; display:inline-block; flex:0 0 22px; transform-origin:center;
  transition: transform .32s cubic-bezier(.2,.9,.2,1), color .2s linear;
  color: rgba(255,255,255,0.85);
  position: relative;
}
.faq-caret::before {
  content: "";
  display:block;
  width:100%; height:100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 9.5l6 6 6-6' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  background-size:contain; background-repeat:no-repeat; background-position:center;
  opacity:0.85;
}

/* answer panel (hidden by default) */
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .48s cubic-bezier(.2,.9,.25,1), opacity .32s ease;
  opacity: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
  border-radius: 0 0 18px 18px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0 26px;
  margin-top: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.01);
}

/* when open: styles */
.faq-item.open .faq-q {
  border-color: rgba(110,170,255,0.75);
  box-shadow: 0 22px 60px rgba(9,30,80,0.45);
  transform: translateY(-2px) scale(1.01);
}
.faq-item.open .faq-caret { transform: rotate(180deg); color: #8ed1ff; }
.faq-item.open .faq-a { opacity: 1; padding: 18px 26px 26px; max-height: 420px; }

/* answer text */
.faq-a p { margin: 0; color: rgba(255,255,255,0.88); line-height:1.6; font-size:1.03rem; }

/* small screens */
@media (max-width:900px) {
  .faq-q { padding: 20px; font-size:1.12rem; }
  .faq-a { padding: 0 20px; }
}

/* keyboard focus */
.faq-q:focus { outline: none; box-shadow: 0 0 0 4px rgba(79,144,255,0.12); border-color: rgba(79,144,255,0.5); }

/* ---------- FINAL HERO: cinematic, premium ---------- */
.final-hero {
  position: relative;
  padding: clamp(48px, 6.5vw, 110px) 6vw 80px;
  background: linear-gradient(180deg, #030409 0%, #02050a 60%, #060911 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* aurora canvas layer */
.final-aurora-layer { position:absolute; inset:0; z-index:0; pointer-events:none; }
#final-aurora { width:100%; height:100%; display:block; }
.aurora-overlay {
  position:absolute; inset:0;
  background: radial-gradient(60% 40% at 18% 22%, rgba(212,0,255,0.06), transparent 12%),
              linear-gradient(180deg, rgba(3,6,12,0.0), rgba(0,0,0,0.32));
  mix-blend-mode: screen;
  pointer-events:none;
  z-index:1;
}

/* content wrapper */
.final-inner { position:relative; z-index:5; display:grid; grid-template-columns: 1fr 440px; gap: clamp(18px, 5vw, 56px); align-items:center; max-width:1200px; margin:0 auto; }

/* copy */
.final-copy { max-width: 820px; }
.final-kicker { color: rgba(255,255,255,0.78); margin:0 0 10px 0; font-weight:600;font-size: 30px; letter-spacing:0.3px; }
.final-heading { margin:0 0 18px 0; font-size: clamp(28px, 4.2vw, 56px); line-height:1.02; font-weight:900; letter-spacing:-0.6px; }
.final-heading .accent { background: linear-gradient(90deg,#d400ff,#00c6ff); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.final-sub { margin:0 0 20px 0; color: rgba(255,255,255,0.9); font-size:1.02rem; line-height:1.6; }

/* CTAs */
.final-ctas { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.btn { text-decoration:none; display:inline-block; padding:12px 20px; border-radius:12px; font-weight:700; transition: transform .18s ease, box-shadow .18s ease; }
.btn-primary { background: linear-gradient(90deg,#2f6bff,#00c6ff); color:#fff; box-shadow: 0 20px 50px rgba(47,107,255,0.12); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 32px 80px rgba(47,107,255,0.18); }
.btn-outline { background: transparent; border:1px solid rgba(255,255,255,0.06); color: rgba(255,255,255,0.94); padding:10px 16px; }

/* right art — glass card */
.final-art { display:flex; align-items:center; justify-content:center; }
.glass-card {
  width: 420px; height: 320px; border-radius:18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.035);
  box-shadow: 0 26px 70px rgba(2,6,20,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position:relative; overflow:hidden; transform: translateZ(0);
}

/* glass inner layout */
.glass-inner { display:flex; flex-direction:column; align-items:center; justify-content:space-between; height:100%; padding:18px; text-align:center; color: #e9f7ff; }
.glass-header .glass-year { font-weight:800; letter-spacing:1px; color:#fff; font-size:1.02rem; }
.glass-header .glass-date { color: rgba(255,255,255,0.74); font-size:0.92rem; margin-top:6px; }
.glass-visual { width:100%; display:flex; align-items:center; justify-content:center; opacity:0.92; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6)); }
.glass-footer { margin-bottom:8px; }
.glass-tag { display:inline-block; padding:8px 12px; border-radius:999px; background: linear-gradient(90deg, rgba(14,16,28,0.6), rgba(30,24,46,0.5)); color:#cfefff; font-weight:700; font-size:0.9rem; }

/* final bottom */
.final-bottom { position:relative; z-index:6; margin-top:28px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px; padding-top:6px; }
.final-links a { color: rgba(150,110,255,0.95); margin-right:18px; font-weight:600; text-decoration:none; }

/* subtle hover & focus for accessibility */
.glass-card:focus-within, .glass-card:hover { transform: translateY(-6px); box-shadow: 0 38px 100px rgba(2,6,20,0.72); }

/* responsive */
@media (max-width:1100px) {
  .final-inner { grid-template-columns:1fr 340px; }
  .glass-card { width:340px; height:260px; }
}
@media (max-width:780px) {
  .final-inner { grid-template-columns:1fr; gap:18px; text-align:center; }
  .final-art { order:-1; }
  .glass-card { margin: 0 auto; transform: scale(0.96); }
  .final-bottom { justify-content:center; }
}
@media (prefers-reduced-motion: reduce) {
  #final-aurora { display:none !important; }
}
/* emblem styling + animation */
.emblem-svg { display:block; max-width:220px; height:auto; margin:0 auto; transform: translateZ(0); }

.ring { transform-origin:110px 110px; transition: transform .6s cubic-bezier(.2,.9,.3,1); }
.ring--outer { stroke-dasharray: 4 2; opacity:0.95; }
.ring--mid { opacity:0.06; }
.ring--inner { opacity:0.10; }

.core { transform-origin:110px 110px; animation: corePulse 2200ms ease-in-out infinite; }
.core-halo { animation: haloFade 2200ms ease-in-out infinite; }

.orb { opacity:0.0; transform-origin:110px 110px; animation: orbitMove 6000ms linear infinite; }
.orb.o1 { animation-delay: 0ms; }
.orb.o2 { animation-delay: 800ms; }
.orb.o3 { animation-delay: 1600ms; }

/* subtle hover grow inside glass-card */
.glass-card:hover .emblem-svg { transform: scale(1.06); }
.glass-card:focus-within .emblem-svg { transform: scale(1.03); }

/* keyframes */
@keyframes corePulse {
  0%   { transform: translateY(0) scale(1); opacity:1; }
  50%  { transform: translateY(-3px) scale(1.06); opacity:0.95; }
  100% { transform: translateY(0) scale(1); opacity:1; }
}
@keyframes haloFade {
  0%   { opacity:0.07; transform: scale(1); }
  50%  { opacity:0.13; transform: scale(1.06); }
  100% { opacity:0.07; transform: scale(1); }
}
@keyframes orbitMove {
  0% { opacity:0.0; transform: rotate(0deg) translateX(0) rotate(0deg); }
  10% { opacity:1; }
  50% { opacity:1; transform: rotate(180deg) translateX(0) rotate(-180deg); }
  90% { opacity:1; }
  100% { opacity:0.0; transform: rotate(360deg) translateX(0) rotate(-360deg); }
}

/* small screens tuning */
@media (max-width:780px) {
  .emblem-svg { max-width:160px; }
  .core { animation-duration:2600ms; }
}



/* =========================
   SMALL / UTILITY RESPONSIVE HELPERS
   - Reduced motion preference
   - Small-screen button sizing
   ========================= */
@media(prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
    animation: none !important
  }
}

@media(max-width:640px) {
  .register-btn {
    width: 80%;
    font-size: 1rem;
    padding: 12px 0
  }

  .container {
    padding: 0 16px
  }
}

/* =========================
   END OF FILE
   ========================= */

   