@font-face{
  font-family: 'DeckJamDisplay';
  src: url('assets/fonts/NCS-Radhiumz.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: 'DeckJamDisplay';
  src: url('assets/fonts/NCS-Radhiumz.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: 'DeckJamText';
  src: url('assets/fonts/NCS-Radhiumz.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #090808;
  --surface: #0f0d0f;
  --surface-2: #141216;
  --text: #f5f5f5;
  --text-strong: #ffffff;
  --muted: #cfcfd2;
  --primary: #f47c20;
  --primary-2: #fcb040;
  --accent: #7b3ce1;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 20px 50px rgba(0,0,0,0.4);
  --grad-hero: radial-gradient(circle at 20% 20%, rgba(244,124,32,0.15), transparent 35%), radial-gradient(circle at 80% 10%, rgba(146,57,255,0.14), transparent 35%), #090808;
  --grad-button: linear-gradient(135deg, #fcb040, #f47c20);
  --grad-highlight: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 55px rgba(0,0,0,0.45);
  --font-body: 'DeckJamText', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DeckJamDisplay', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em; /* optional, looks premium */
}

.hero-headline h1{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(252,176,64,0.95); /* orange */
}

.eyebrow{
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.3em;
}



a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* NAV */
.navbar{
  position: sticky;
  top: 0;
  z-index: 50;

  /* Apple-style translucent glass */
  background: rgba(10, 10, 12, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  /* subtle separation without a hard line */
  box-shadow: 
    0 1px 0 rgba(255,255,255,0.06),
    0 10px 30px rgba(0,0,0,0.25);
}

.nav-inner{
  position: relative;
  z-index: 2;
}

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: center;  /* center everything */
  padding: 14px 0;
  position: relative;
}

/* Make the right wrapper span full width so nav can truly center */
.nav-right{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;  /* center tabs */
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-text {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.4px;
  color: var(--text-strong);
}

.nav-links{
  display: flex;
  gap: 38px;  /* was ~24px */
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Links are orange by default, turn white on hover/active */
/* default state */
.nav-link{
  color: rgba(252,176,64,0.95); /* orange */
  padding: 6px 0;
  transition: color 180ms ease;
}

/* hover ONLY */
.nav-link:hover{
  color: rgba(255,255,255,0.95); /* white on hover */
}

/* active state = orange (same as default) */
.nav-link.active{
  color: rgba(252,176,64,0.95);
}



.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s ease;
}

.nav-social { display: flex; gap: 12px; align-items: center; }
.nav-social .social-link { width: 38px; height: 38px; }
/* Make social icons match nav link color behavior */
.social-link{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;

  background: transparent;   /* no box */
  border: none;               /* REMOVE BORDER */
  border-radius: 0;           /* optional – keeps it ultra clean */

  color: rgba(252,176,64,0.95); /* orange */
  transition: color 180ms ease, transform 180ms ease;
}

.social-link:hover{
  color: rgba(255,255,255,0.95); /* white on hover */
  transform: translateY(-1px);
}

.social-link i{
  font-size: 18px;
  line-height: 1;
}


.section { padding: 80px 0; }

/* Original hero base (kept for other layouts) */
.hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: 'EVENT';
  position: absolute;
  top: 10%;
  left: -5%;
  font-size: 220px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  letter-spacing: 6px;
  pointer-events: none;
}

.hero-center{
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
  position: relative;
  z-index: 2;
}


/* Buttons */
.btn {
  display: inline-block;
  background: var(--grad-button);
  color: #101010;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.8px;
  box-shadow: var(--shadow-soft);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(244,124,32,0.25); }
.btn.wide { width: 100%; text-align: center; color: #0e0e0e; }

.eyebrow { color: rgba(255,255,255,0.35); letter-spacing: 4px; font-weight: 700; margin: 0 0 12px; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 22px; }

/* =========================
   NEW HERO SYSTEM
========================= */
.hero-video{
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 110px 0 90px;
  overflow: hidden;
  background: transparent !important; /* overrides .hero background */
}

/* Fixed background video */
.bg-fixed{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: brightness(0.90) saturate(1.05) contrast(1.05);
  opacity: 0.90;
}

.bg-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244,124,32,0.18), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(123,60,225,0.18), transparent 45%),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75));
}

/* Frosted glass always on */
.glass-page{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10,10,12,0.35), rgba(10,10,12,0.55));
  opacity: 1;
}

/* Smaller, cleaner mouse light */
.shine-page{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background: radial-gradient(
    circle 140px at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.10) 22%,
    rgba(255,255,255,0.03) 45%,
    transparent 70%
  );
  mix-blend-mode: screen;
  opacity: 0.35;
}

/* Hero content */
.hero-center{
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

/* Move logo slightly higher */
.logo-stage{
  width: min(880px, 96vw);
  height: min(520px, 58vh);
  display: grid;
  place-items: center;
  perspective: 900px;
  perspective-origin: center;
  transform: translateY(-40px);
}

.logo-tilt{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-logo{
  width: min(720px, 92vw);
  height: auto;
  transform: translateZ(40px);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.55));
}

/* Headline */
.hero-headline h1{
  font-size: clamp(30px, 4.3vw, 52px);
  margin: 0;
}
.hero-headline .eyebrow{
  margin: 0 0 10px;
}

/* Below-hero section */
.hero-after{
  padding-top: 30px;
  background: transparent;
}
.hero-after-inner{
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
}
.hero-after .lead{
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  margin: 0;
}

/* =========================
   HERO VIDEO BACKGROUND (hero only)
========================= */

/* IMPORTANT: override the old .hero gradient for this hero */
:root{
  --nav-h: 72px; /* adjust if your navbar height differs */
}

.hero.hero-video{
  background: transparent !important;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;

  /* Make the hero background start behind the navbar */
  margin-top: calc(var(--nav-h) * -1);
  padding-top: var(--nav-h);
}


/* Video layer */
.bg-hero{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}



/* Smaller, cleaner mouse light (hero only) */
.shine-hero{
  position: fixed;    /* was absolute */
  inset: 0;
  z-index: 10;        /* above hero bg/glass, below content if needed */
  pointer-events: none;

  background: radial-gradient(
    circle 120px at var(--mx, 50%) var(--my, 50%),
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.10) 22%,
    rgba(255,255,255,0.03) 45%,
    transparent 70%
  );

  mix-blend-mode: screen;
  opacity: var(--shine, 0.35);
}


/* Content */
.hero-center{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-bottom: 34px;
}




/* Move logo slightly higher */
.logo-stage{
  width: min(880px, 96vw);
  height: min(520px, 70vh);
  display: grid;
  place-items: center;
  perspective: 900px;
  transform: translateY(-40px);
}

.logo-tilt{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-logo{
  width: min(720px, 92vw);
  height: auto;
  transform: translateZ(40px);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.55));
}

/* Make hero content fill height and push CTA to bottom */
.hero-center{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-bottom: 34px;
}


/* Wrapper for logo + headline */
.hero-main{
  display: grid;
  justify-items: center;
  gap: 48px; /* space between logo and headline */
}


/* Bottom block pinned */
.hero-bottom{
  margin-top: 20px;   /* THIS pushes only the CTA down */
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 16px;
}


/* Make the bottom text orange */
.hero-bottom-lead{
  max-width: 760px;
  margin: 0;
  color: rgba(252,176,64,0.95); /* orange */
  text-shadow: 0 10px 30px rgba(0,0,0,0.45); /* keeps readable over video */
}

/* Glow around the button */
.btn-glow{
  position: relative;
  box-shadow:
    0 14px 40px rgba(244,124,32,0.28),
    0 0 0 1px rgba(252,176,64,0.25),
    0 0 28px rgba(252,176,64,0.22);
}

/* optional: stronger glow on hover */
.btn-glow:hover{
  box-shadow:
    0 18px 55px rgba(244,124,32,0.34),
    0 0 0 1px rgba(252,176,64,0.32),
    0 0 44px rgba(252,176,64,0.28);
}



/* =========================
   ABOUT SECTION (video background, no left image, mission on right)
========================= */

.about.about-video{
  position: relative;
  overflow: hidden;
  background: transparent; /* video handles background */
  min-height: 90vh;        /* makes section taller */
  display: flex;
  align-items: center;     /* vertically centers content */
}

/* video background layer */
.about-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}


.about-bg-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244,124,32,0.14), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(123,60,225,0.16), transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0.50), rgba(0,0,0,0.72));
}

/* content above video */
.about.about-video .container{
  position: relative;
  z-index: 2;
}

/* two-column layout: text left, mission right */
.about-grid{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: stretch; /* IMPORTANT: stretch both columns */
}


/* left-aligned text */
.about-content{
  text-align: left;
}

.about-content h2{
  margin: 0 0 14px;
  font-size: clamp(30px, 3.4vw, 42px);
}

.about-content p{
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

/* mission card sits on the right */
.about-side{
  display: flex;
  justify-content: flex-end;
}

.mission-card{
  width: 100%;
  max-width: 420px;
}

.mission-card{
  display: flex;
  gap: 16px;
  align-items: center;

  padding: 26px 28px;
  border-radius: 24px;

  /* Apple-style glass */
  background: rgba(20, 20, 24, 0.38);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
}


/* responsive: stack nicely on mobile */
@media (max-width: 900px){
  .about-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-side{
    justify-content: flex-start;
  }

  .mission-card{
    max-width: 560px;
  }
}


.mission-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}
.icon-circle {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(244,124,32,0.18), rgba(244,124,32,0.05));
  color: var(--primary);
  font-size: 20px;
}
.mission-card h3 { margin: 0 0 6px; letter-spacing: 1px; }
.mission-card p { margin: 0; color: var(--muted); }

.stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0f0d10;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}
.stat-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(244,124,32,0.16), rgba(244,124,32,0.04));
  border-radius: 12px;
  color: var(--primary);
}
.stat h4 { margin: 0; font-size: 22px; }
.stat p { margin: 2px 0 0; color: var(--muted); }

.section-title { text-align: center; font-size: 32px; margin: 0 0 26px; }

.why {
  background: radial-gradient(circle at 80% 10%, rgba(244,124,32,0.12), transparent 35%), #0b080c;
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 100 100" fill="none" stroke="rgba(255,255,255,0.02)"%3E%3Cpath d="M0 0 L50 0 L100 50 L50 100 L0 50 Z" /%3E%3C/svg%3E');
  opacity: 0.25;
  pointer-events: none;
}
.why .container { position: relative; z-index: 2; }
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 18px;
}
.feature-card {
  background: #0f0d12;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(244,124,32,0.18), rgba(244,124,32,0.04));
  color: var(--primary);
  margin-bottom: 12px;
}
.feature-card h3 { margin: 0 0 8px; font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); }



/* =========================
   ABOUT — SINGLE GLASS BLOCK
========================= */

.about.about-glass{
  background: transparent;
}

/* Glass container */
.about-glass-inner{
  max-width: 960px;
  margin: 0 auto;
  padding: 54px 64px;

  background: rgba(18,18,20,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);

}

/* Heading — centered, single line */
.about-title{
  text-align: center;
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 0 0 28px;
  white-space: nowrap;
}

/* Paragraph — left aligned but centered as a block */
.about-text{
  max-width: 720px;
  margin: 0 auto;
  text-align: left;

  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  line-height: 1.7;
}

/* Mobile polish */
@media (max-width: 768px){
  .about-glass-inner{
    padding: 36px 28px;
  }

  .about-title{
    white-space: normal;
    text-align: center;
  }
}







.registration {
  background: radial-gradient(circle at 20% 20%, rgba(124,58,237,0.16), transparent 40%),
              radial-gradient(circle at 80% 0%, rgba(244,124,32,0.2), transparent 40%),
              #0c0b0d;
  position: relative;
}
.registration::before {
  content: 'EVENT';
  position: absolute;
  bottom: 8%; left: 5%;
  font-size: 200px; font-weight: 800;
  color: rgba(255,255,255,0.03);
  letter-spacing: 4px;
}
.registration .container { position: relative; z-index: 2; }
.section-sub { text-align: center; color: var(--muted); margin-top: -8px; }
.form {
  margin-top: 24px;
  background: #0f0d12;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 14px; }
.field {
  background: #0b0a0d;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.06);
}
.field input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 15px;
  outline: none;
}
.error { display: block; color: #f77; font-size: 12px; min-height: 14px; margin-top: 4px; }
.success { color: #8ef3b5; text-align: center; font-weight: 600; min-height: 18px; }

.footer {
  background: #050405;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  padding-bottom: 24px;
}
.footer h4 { margin: 0 0 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; color: var(--muted); display: grid; gap: 10px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: #0f0d12;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--primary);
}
.sub-footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0 16px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    right: 18px;
    background: #0c0b0d;
    padding: 16px;
    border-radius: 16px;
    flex-direction: column;
    gap: 14px;
    width: 220px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-right { gap: 12px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .nav-inner { padding: 12px 0; }
}

@media (max-width: 480px) {
  .hero::before, .registration::before { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .feature-card, .stat, .mission-card { padding: 16px; }
  .container { width: 90vw; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .logo-tilt{ transform: none !important; }
  .shine-page{ display: none; }
}

/* =========================
   NAV OVERRIDES (paste last)
========================= */

/* Nav link colors: orange default, white on hover only */
.navbar .nav-links .nav-link{
  color: rgba(252,176,64,0.95) !important;
  transition: color 180ms ease;
}

.navbar .nav-links .nav-link:hover{
  color: rgba(255,255,255,0.95) !important;
}

/* Active should NOT be white */
.navbar .nav-links .nav-link.active{
  color: rgba(252,176,64,0.95) !important;
}

/* Remove any underline rules from older CSS */
.navbar .nav-links .nav-link::after,
.navbar .nav-links .nav-link:hover::after,
.navbar .nav-links .nav-link.active::after{
  content: none !important;
}

/* More spacing between links and icons */
.navbar .nav-right{
  gap: 28px !important;
}

.navbar .nav-links{
  gap: 44px !important;
}

.navbar .nav-social{
  gap: 22px !important;
}

/* REMOVE the icon boxes/borders from any older .social-link rule */
.navbar .nav-social .social-link{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;

  width: auto !important;
  height: auto !important;
  padding: 6px 8px !important;   /* gives click area without a box */

  color: rgba(252,176,64,0.95) !important;
  transition: color 180ms ease, transform 180ms ease;
}

.navbar .nav-social .social-link:hover{
  color: rgba(255,255,255,0.95) !important;
  transform: translateY(-1px);
}

/* Icon sizing */
.navbar .nav-social .social-link i{
  font-size: 18px;
  line-height: 1;
}

/* FORCE hover to white (wins over any older rules) */
.navbar .nav-links a.nav-link:hover{
  color: rgba(255,255,255,0.95) !important;
}

/* Keep active orange when not hovering */
.navbar .nav-links a.nav-link.active{
  color: rgba(252,176,64,0.95) !important;
}

/* If active is hovered, it should still go white */
.navbar .nav-links a.nav-link.active:hover{
  color: rgba(255,255,255,0.95) !important;
}

/* =========================
   WHY: interactive glass panels
========================= */

.why.why-panels{
  position: relative;
  overflow: hidden;
  background: transparent;
}

/* still background (blurred) */
.why.why-panels .why-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(244,124,32,0.10), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(123,60,225,0.12), transparent 50%),
    url('assets/why/why-bg.jpg'); /* <- set your still bg here */
  background-size: cover;
  background-position: center;
  filter: blur(10px) brightness(0.55) saturate(1.05);
  transform: scale(1.08);
  opacity: 1;
  pointer-events: none;
}

.why.why-panels .container{
  position: relative;
  z-index: 2;
}

/* keep same section size (uses your existing .section padding) */

/* Panels row */
.panels{
  margin-top: 22px;
  height: 340px;              /* fixed height “container” */
  display: flex;
  gap: 12px;                  /* small spacing */
  align-items: stretch;
}

/* Each panel */
.panel{
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;

  /* glass + stroke */
  border: 1px solid rgba(255,255,255,0.08);   /* lighter edge */
  background: rgba(83, 83, 107, 0.18);            /* MORE transparent */
  backdrop-filter: blur(6px);                /* slightly softer blur */
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.05);


  transition:
    flex 320ms ease,
    border-radius 320ms ease,
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.panel{
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;

  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(18,18,22,0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);

  transition:
    flex 320ms ease,
    border-radius 320ms ease,
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

/* actual image layer */
.panel-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: blur(2px) brightness(0.70) saturate(1.05);
  opacity: 0.95;
}

/* dark overlay for readability */
.panel-bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.70));
  opacity: 0.85;
}

/* icon + content above */
.panel-icon{ position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; }
.panel-content{ position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 3; }


/* icon center */
.panel-icon{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.panel-icon img{
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.55));
}

/* content hidden by default */
.panel-content{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.panel-content h3{
  margin: 0 0 8px;
  font-size: 16px;
}

.panel-content p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* --- Hover behavior --- */

/* when any panel is hovered, shrink others a bit */
.panels:hover .panel{
  flex: 0.85;
}

/* hovered panel expands, becomes squarer, reveals info */
.panel:hover{
  flex: 2.4;
  border-radius: 14px; /* more square */
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 32px 90px rgba(0,0,0,0.55);
  transform: translateY(-2px);
}

/* fade icons out on non-hovered panels so the hovered one feels “main” */
.panels:hover .panel:not(:hover) .panel-icon{
  opacity: 0.18;
  transform: scale(0.92);
}

/* hovered panel icon can shift slightly upward */
.panel:hover .panel-icon{
  opacity: 0.75;
  transform: translateY(-12px) scale(1.02);
}

/* reveal content on hovered panel */
.panel:hover .panel-content{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive: turn into stacked cards */
@media (max-width: 900px){
  .panels{
    height: auto;
    flex-direction: column;
  }
  .panel{
    height: 170px;
    border-radius: 18px;
  }
  .panels:hover .panel{ flex: 1; }
  .panel:hover{ flex: 1; border-radius: 18px; transform: none; }
  .panel-content{ opacity: 1; transform: none; }
  .panel-icon{ opacity: 0.65; }
}

/* Hide the icon on the hovered panel only */
.panel:hover .panel-icon{
  opacity: 0;
  transform: scale(0.96);
}

.panel-icon{
  transition: opacity 140ms ease, transform 140ms ease;
}

/* WHY section still-image background */
.why.why-panels{
  position: relative;
  overflow: hidden;
  background: transparent;
}

.why-bg-img{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  /* set your image here */
  background-image: url("assets/deck_jam_bg.png");
  background-size: cover;
  background-position: center;

  /* blur + dim + soften */
  filter: blur(0px) brightness(1.0) saturate(1.05);
  transform: scale(1.10); /* prevents blur edges */
  opacity: 0.55;
}

/* Keep content above the background */
.why.why-panels .container{
  position: relative;
  z-index: 2;
}

/* WHY section title in orange */
#why .section-title{
  color: var(--primary); /* orange */
}

/* WHY panel icons → orange */
#why .panel-icon img{
  filter: 
    brightness(0) 
    saturate(100%) 
    invert(63%) 
    sepia(87%) 
    saturate(748%) 
    hue-rotate(345deg) 
    brightness(102%);
}

/* FAQ section title in orange */
#faqs .section-title{
  color: var(--primary);
}

/* =========================
   ABOUT — glass box + video bg
========================= */

.about.about-glass{
  position: relative;
  overflow: hidden;
  background: transparent;
}


/* Background video layer */
.about-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}


.about-bg-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244,124,32,0.12), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(123,60,225,0.14), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.72));
}

/* Bring content above video */
.about.about-glass .container{
  position: relative;
  z-index: 2;
}

/* Glass container auto-sizes to content */
.about-glass-inner{
  width: min(980px, 92vw);     /* responsive width so title never overflows */
  margin: 0 auto;
  padding: 54px 64px;

  background: rgba(18,18,20,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);

}

/* Title: stays contained, never leaks */
.about-title{
  text-align: center;
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 0 0 22px;
  padding: 0 8px;             /* extra safety */
  white-space: normal;         /* allow wrap if needed */
  overflow-wrap: anywhere;     /* prevents overflow on small screens */
}

/* Paragraph: center aligned */
.about-text{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;

  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  line-height: 1.7;
}

/* Mobile polish */
@media (max-width: 768px){
  .about-glass-inner{
    padding: 36px 24px;
  }
}

.about-bg-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);

  filter: brightness(0.40) saturate(1.05) contrast(1.05);
  opacity: 0.9;

  background: #000;            /* prevents transparency flash */
  backface-visibility: hidden;
}

/* ===============================
   HERO ORANGE – GLOBAL OVERRIDES
   =============================== */

/* WHY section heading */
#why .section-title{
  color: rgba(252,176,64,0.95) !important;
}

/* WHY section icons (image icons) */
#why .panel-icon img{
  filter:
    brightness(0)
    saturate(100%)
    invert(63%)
    sepia(87%)
    saturate(748%)
    hue-rotate(345deg)
    brightness(102%);
}

/* WHY section icons (material / font icons fallback) */
#why .panel-icon,
#why .material-symbols-outlined{
  color: rgba(252,176,64,0.95) !important;
}

/* FAQ section heading */
#faqs .section-title{
  color: rgba(252,176,64,0.95) !important;
}

/* =========================
   DJ FAQ (clean rebuild, no conflicts)
========================= */

.dj-faq{
  position: relative;
  overflow: hidden;
  background: transparent;
}

.dj-faq-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image: url("assets/djbackground4.png");
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(1.0) saturate(1.05);
  transform: scale(1.10);
  opacity: 0.80;
}

.dj-faq .container{
  position: relative;
  z-index: 2;
}

.dj-faq-title{
  color: rgba(252,176,64,0.95);
}

.dj-faq-list{
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

/* Question row (neutral glass, never orange) */
.dj-faq-q{
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);

  width: 100%;
  text-align: left;

  background: rgba(15,15,18,0.68);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;

  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);

  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, opacity 200ms ease;
}

.dj-faq-q:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.14);
}

.dj-faq-q[aria-expanded="true"]{
  background: rgba(15,15,18,0.55); /* slight dim only */
  opacity: 0.92;
}

/* Arrow */
.dj-faq-icon{
  transition: transform 200ms ease;
}

.dj-faq-q[aria-expanded="true"] .dj-faq-icon{
  transform: rotate(180deg);
}

/* =========================
   DJ FAQ — SEAMLESS GRID ACCORDION
========================= */

.dj-faq-a{
  display: grid;
  grid-template-rows: 0fr;     /* collapsed */
  overflow: hidden;
  opacity: 0;

  padding: 0 16px;
  border-radius: 16px;

  transition: grid-template-rows 260ms ease, opacity 200ms ease, padding 260ms ease;
  will-change: grid-template-rows;
}

/* inner wrapper must be able to shrink */
.dj-faq-a-inner{
  min-height: 0;
  overflow: hidden;
}

/* OPEN state */
.dj-faq-a.open{
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 14px 18px 18px;

  background: rgba(18,18,20,0.55);
  border: 1px solid rgba(255,255,255,0.14);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 40px rgba(0,0,0,0.35);

  color: rgba(252,176,64,0.95);
}



/* =========================================================
   SHARED VIDEO BG (ONLY across ABOUT + WHY)
   Keep ONLY this version
========================================================= */

.shared-bg-wrap{
  position: relative;
  overflow: hidden;
  background: transparent;
  isolation: isolate; /* local stacking context */
}

/* Sticky background that stays in place while scrolling inside wrap */
.shared-bg{
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Video fills sticky viewport */
.shared-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);

  filter: brightness(0.40) saturate(1.05) contrast(1.05);
  opacity: 0.95;

  background: #000;
  backface-visibility: hidden;
}

.shared-bg-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244,124,32,0.10), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(123,60,225,0.12), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.72));
}

/* Sections always above the video */
.shared-bg-wrap > section{
  position: relative;
  z-index: 2;
  background: transparent !important;
}

/* Kill any old WHY backgrounds */
#why::before,
#why::after,
#why .why-bg-img{
  display: none !important;
  content: none !important;
  background: transparent !important;
}

/* =========================================================
   SHARED VIDEO BG (ABOUT + WHY ONLY) — CLIPPED FIXED VIDEO
   Paste at VERY bottom
========================================================= */

.shared-bg-wrap{
  position: relative;
  isolation: isolate;
  background: transparent;
}

/* Fixed video (stable), but we CLIP it to the wrapper using clip-path */
.shared-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;

  /* These get set by JS */
  clip-path: inset(var(--clip-top, 0px) 0 var(--clip-bottom, 0px) 0);
  opacity: var(--clip-vis, 0);
  transition: opacity 180ms ease;
}

.shared-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  transform: scale(1.03);
  filter: brightness(0.40) saturate(1.05) contrast(1.05);
}

.shared-bg-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244,124,32,0.10), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(123,60,225,0.12), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.72));
}

/* Force ABOUT + WHY content above the background */
.shared-bg-wrap > section{
  position: relative;
  z-index: 2;
  background: transparent !important;
}

/* Kill ANY old WHY backgrounds so the shared video shows */
#why::before,
#why::after,
#why .why-bg,
#why .why-bg-img,
#why .why-bg-image{
  display: none !important;
  content: none !important;
  background: transparent !important;
}

/* =========================
   WHY PANELS — CENTER CONTENT
   ========================= */

/* Center the content block instead of pinning to bottom */
#why .panel-content{
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;

  display: grid !important;
  place-items: center !important;
  text-align: center !important;

  padding: 22px !important;

  /* visible only on hover (keeps your behavior) */
  opacity: 0 !important;
  transform: translateY(10px) !important;
}

/* On hover, reveal centered content */
#why .panel:hover .panel-content{
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Make titles readable and centered */
#why .panel-content h3{
  margin: 0 0 10px !important;
  font-size: 18px !important;
  color: var(--text) !important;
}

#why .panel-content p{
  margin: 0 !important;
  max-width: 260px !important;
  color: var(--muted) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

/* Keep icon hidden on hovered panel (no interference) */
#why .panel:hover .panel-icon{
  opacity: 0 !important;
}

/* ABOUT title color */
#about .about-title{
  color: rgba(252,176,64,0.95) !important;
}

/* Registration CTA button layout */
.reg-cta{
  margin-top: 22px;
  display: grid;
  justify-items: center;
}

/* HTML background layer wins even if section has background rules */
#registration{
  position: relative;
  overflow: hidden;
}

#registration .reg-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#registration .reg-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(0.45);
  transform: scale(1.08);
  opacity: 0.9;
}

/* Ensure content stays above */
#registration .container{
  position: relative;
  z-index: 2;
}

/* Registration section heading — orange */
#registration .section-title{
  color: rgba(252,176,64,0.95) !important;
}

/* =========================
   FOOTER SOCIAL ICONS
========================= */

.footer-social{
  display: flex;
  gap: 18px;
}

.footer-social-link{
  color: rgba(252,176,64,0.95); /* orange */
  font-size: 20px;

  transition: color 180ms ease, transform 180ms ease;
}

.footer-social-link:hover{
  color: rgba(255,255,255,0.95);
  transform: translateY(-2px);
}

/* =========================
   REGISTRATION — CLEAN GREY
========================= */

#registration{
  background: #0f0f12 !important; /* soft dark grey */
  position: relative;
}

/* remove any leftover overlays */
#registration::before,
#registration::after,
#registration .reg-bg,
#registration video{
  display: none !important;
}

/* =========================
   REGISTRATION — MATCH FOOTER
========================= */

#registration{
  background: #050405 !important; /* exact same as footer */
  position: relative;
}

/* Kill any leftover backgrounds / overlays */
#registration::before,
#registration::after,
#registration .reg-bg,
#registration video{
  display: none !important;
}

#registration{
  border-bottom: 1px solid rgba(255,255,255,0.04);
}



/* =========================
   HERO MOBILE LAYOUT FIX
========================= */
@media (max-width: 768px){
  .hero.hero-video{
    padding: 86px 0 48px; /* less vertical padding */
  }

  .hero-center{
    padding-bottom: 18px;
  }

  .logo-stage{
    height: 38vh;              /* smaller */
    transform: translateY(0);  /* stop pushing it up */
  }

  .hero-main{
    gap: 18px; /* tighter spacing between logo and heading */
  }

  .hero-logo{
    width: min(520px, 92vw); /* smaller logo */
  }

  .hero-headline h1{
    font-size: clamp(22px, 6.2vw, 34px);
  }

  .hero-bottom{
    margin-top: 12px;
    gap: 12px;
  }

  .hero-bottom-lead{
    font-size: 15px;
    padding: 0 10px;
  }
}

/* =========================
   HERO TABLET — LOWER THE HEADING
========================= */
@media (min-width: 769px) and (max-width: 1024px){

  /* Keep logo size controlled */
  .logo-stage{
    height: 48vh;          /* a bit taller stage */
    max-height: 420px;     /* still capped */
    transform: translateY(12px); /* move the whole logo block DOWN slightly */
  }

  .hero-logo{
    width: min(560px, 78vw);
  }

  /* THIS is the main control: push heading lower */
  .hero-main{
    gap: 56px; /* bigger gap between logo and heading */
  }

  .hero-headline h1{
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.12;
    margin: 0;
  }

  /* Optional: also push the bottom block slightly down */
  .hero-bottom{
    margin-top: 18px;
    gap: 14px;
  }
}

/* =========================
   HERO MID BREAKPOINT (PHABLET / SMALL TABLET)
   476px–768px: prevent logo crowding + keep heading lower
========================= */
@media (min-width: 476px) and (max-width: 768px){

  /* slightly taller logo stage than phone, but capped */
  .logo-stage{
    height: 42vh !important;
    max-height: 340px !important;
    transform: translateY(8px) !important; /* nudge logo down */
  }

  /* keep logo controlled so it doesn't dominate */
  .hero-logo{
    width: min(520px, 78vw) !important;
  }

  /* main knob: drop heading lower under logo */
  .hero-main{
    gap: 84px !important;
  }

  .hero-headline h1{
    font-size: clamp(24px, 4.6vw, 36px) !important;
    line-height: 1.14;
  }

  .hero-bottom{
    margin-top: 14px !important;
    gap: 12px !important;
  }

  .hero-bottom-lead{
    font-size: 15.5px !important;
  }
}




/* =========================
   WHY PANELS — MOBILE ICON-ONLY → TAP REVEAL TEXT
========================= */
@media (max-width: 900px){

  /* Ensure panels are visible and not "thin lines" */
  #why .panels{
    height: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  #why .panel{
    position: relative;
    min-height: 92px;              /* nice tap target */
    border-radius: 18px !important;
    padding: 16px !important;

    display: grid;
    place-items: center;           /* CENTER icon */
    cursor: pointer;

    background: rgba(18,18,22,0.35);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: box-shadow 220ms ease, border-color 220ms ease, transform 220ms ease;
  }

  /* ICON: centered, visible by default */
  #why .panel-icon{
    position: relative !important;
    inset: auto !important;
    display: grid !important;
    place-items: center !important;

    opacity: 1;
    transform: scale(1);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  #why .panel-icon img{
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  /* TEXT: hidden by default */
  #why .panel-content{
    position: absolute !important;
    inset: 0 !important;
    display: grid !important;
    place-items: center !important;

    padding: 18px !important;
    text-align: center !important;

    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;

    transition: opacity 200ms ease, transform 220ms ease;
  }

  #why .panel-content h3{
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.25;
    color: var(--text);
  }

  #why .panel-content p{
    margin: 0;
    max-width: 320px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
  }

  /* EXPANDED (tap): icon disappears, text appears */
  #why .panel[aria-expanded="true"]{
    border-color: rgba(255,255,255,0.20);
    box-shadow: 0 26px 70px rgba(0,0,0,0.55);
  }

  #why .panel[aria-expanded="true"] .panel-icon{
    opacity: 0;
    transform: scale(0.96);
  }

  #why .panel[aria-expanded="true"] .panel-content{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Prevent desktop hover flex behavior from interfering */
  #why .panels:hover .panel{ flex: initial !important; }
  #why .panel:hover{ flex: initial !important; transform: none !important; }
}

/* =========================
   MOBILE: BRIGHTER BACKGROUND VIDEOS
   (Hero 3vids + Shared carousel)
========================= */
@media (max-width: 768px){

  /* brighten the video itself a touch (keep light) */
  .shared-bg-video{
    opacity: 0.90 !important;
    filter: brightness(0.90) contrast(0.90) !important;
  }
}

/* FAQ press feedback (mobile) */
@media (max-width: 768px){
  .dj-faq-q{
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .dj-faq-q:active{
    transform: scale(0.99);
  }
}



/* =========================
   WHY PANELS — MOBILE ICON SIZE STABILITY FIX
========================= */
@media (max-width: 900px){
  #why .panel-icon{
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    flex: 0 0 64px !important;
  }

  #why .panel-icon img{
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;

    /* helps Safari avoid weird “scaled down” renders after resume */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
}

/* =========================
   WHY PANELS — BASE GLASS (FINAL AUTHORITY)
========================= */
#why .panel{
  background: rgba(18,18,22,0.18) !important;
  border: 1px solid rgba(170, 170, 170, 0.08) !important;

  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

#why .panel:hover,
#why .panel[aria-expanded="true"]{
  background: rgba(18,18,22,0.24) !important; /* slightly stronger */
}

/* =========================
   ABOUT SECTION — GLASS OVERRIDE (FINAL)
========================= */
#about .about-glass-inner{
  background: rgba(18,18,22,0.22) !important;   /* more transparent */
  border: 1px solid rgba(170, 170, 170, 0.08) !important;

  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.05) !important;
}






































