    :root {
      --bg: #060608;
      --surface: #0e0e14;
      --surface2: #141420;
      --ink: #f0ede8;
      --muted: #8a8799;
      --brand: #ff5500;
      --brand2: #ff8c00;
      --accent: #ffd700;
      --glow: rgba(255,85,0,0.35);
      --max: 1240px;
      --font-display: 'Bebas Neue', sans-serif;
      --font-ui: 'Barlow Condensed', sans-serif;
      --font-body: 'Barlow', sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--ink);
      font-family: var(--font-body);
      font-weight: 300;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

    /* ─── CURSOR ─────────────────────────────────────────────── */
    .cursor {
      width: 12px; height: 12px;
      background: var(--brand);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%,-50%);
      transition: transform 0.08s, width 0.2s, height 0.2s, background 0.2s;
      mix-blend-mode: exclusion;
    }
    .cursor-ring {
      width: 38px; height: 38px;
      border: 1.5px solid rgba(255,85,0,0.6);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%,-50%);
      transition: transform 0.18s ease, width 0.25s, height 0.25s, border-color 0.25s;
    }
    body:hover .cursor { opacity: 1; }

    /* ─── NOISE TEXTURE OVERLAY ──────────────────────────────── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.028;
      pointer-events: none;
      z-index: 1000;
    }

    /* ─── 3D HERO DEPTH ──────────────────────────────────────── */
    #home {
      perspective: 1200px;
    }
    .hero-inner {
      transform-style: preserve-3d;
    }
    .hero-logo {
      transform: translateZ(40px);
      filter: drop-shadow(0 0 30px rgba(255,85,0,0.7)) drop-shadow(0 0 60px rgba(255,85,0,0.3));
    }
    .hero-title {
      transform: translateZ(20px);
    }
    .hero-tagline {
      transform: translateZ(10px);
    }
    .hero-langs {
      transform: translateZ(5px);
    }
    .hero-cta-group {
      transform: translateZ(30px);
    }

    /* Depth vignette ring */
    #home::after {
      content: '';
      position: absolute; inset: 0; z-index: 3;
      background: radial-gradient(ellipse 80% 70% at 50% 50%,
        transparent 40%,
        rgba(6,6,8,0.45) 100%
      );
      pointer-events: none;
    }

    /* Animated color scanlines for cyberpunk depth */
    .hero-scanlines-color {
      position: absolute; inset: 0; z-index: 2;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255,85,0,0.015) 3px,
        rgba(255,85,0,0.015) 4px
      );
      pointer-events: none;
      animation: scanMove 8s linear infinite;
    }
    @keyframes scanMove {
      0% { background-position: 0 0; }
      100% { background-position: 0 100px; }
    }
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 2px; }

    /* ─── HERO ───────────────────────────────────────────────── */
    #home {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: clip;
    }

    #home .poster-img { display: none; }

    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(
        180deg,
        rgba(6,6,8,0.15) 0%,
        rgba(6,6,8,0.08) 30%,
        rgba(6,6,8,0.5) 72%,
        rgba(6,6,8,1) 100%
      );
    }

    /* extra dimming layer on the video itself */
    #home video, #home .poster-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: saturate(1.3) brightness(0.85) contrast(1.05);
    }

    /* Animated grid lines */
    .hero-grid {
      position: absolute; inset: 0; z-index: 2;
      background-image:
        linear-gradient(rgba(255,85,0,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,85,0,0.06) 1px, transparent 1px);
      background-size: 80px 80px;
      animation: gridScroll 20s linear infinite;
      mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent);
    }
    @keyframes gridScroll {
      0% { background-position: 0 0; }
      100% { background-position: 80px 80px; }
    }

    /* Scanlines */
    .scanlines {
      position: absolute; inset: 0; z-index: 3;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.03) 2px,
        rgba(0,0,0,0.03) 4px
      );
      pointer-events: none;
    }

    .hero-inner {
      position: relative; z-index: 4;
      text-align: center;
      padding: 20px 20px 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .hero-logo {
      width: clamp(80px, 12vmin, 120px);
      height: clamp(80px, 12vmin, 120px);
      border-radius: 50%;
      margin-top: clamp(60px, 8vh, 100px);
      margin-bottom: clamp(12px, 2vh, 24px);
      filter: drop-shadow(0 0 30px rgba(255,85,0,0.7));
      animation: logoPulse 3s ease-in-out infinite;
    }
    @keyframes logoPulse {
      0%, 100% { filter: drop-shadow(0 0 30px rgba(255,85,0,0.7)); transform: scale(1); }
      50% { filter: drop-shadow(0 0 60px rgba(255,140,0,0.9)); transform: scale(1.04); }
    }

    .hero-eyebrow {
      font-family: var(--font-ui);
      font-size: 0.9rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 12px;
      animation: fadeSlideUp 0.8s ease both;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, min(11vw, 12vh), 9rem);
      line-height: 0.92;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: #ffffff;
      text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 24px rgba(0,0,0,0.7);
      animation: fadeSlideUp 0.8s 0.15s ease both;
      position: relative;
    }

    .hero-title .highlight {
      color: var(--brand);
      -webkit-text-stroke: 0px;
      display: block;
      text-shadow: 0 0 40px rgba(255,85,0,0.6), 0 2px 4px rgba(0,0,0,0.9), 0 0 80px rgba(255,85,0,0.3);
    }

    .hero-title .glow-text {
      color: #ffffff;
      text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 0 40px rgba(255,255,255,0.15);
    }

    .hero-tagline {
      font-family: var(--font-body);
      font-style: italic;
      font-size: clamp(0.8rem, 2vw, 1.15rem);
      color: rgba(255, 255, 255, 0.92);
      text-shadow: 0 1px 6px rgba(0,0,0,0.8);
      margin-top: clamp(10px, 1.5vh, 20px);
      letter-spacing: 0.08em;
      animation: fadeSlideUp 0.8s 0.3s ease both;
    }

    .hero-langs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: clamp(8px, 1.2vh, 16px);
      animation: fadeSlideUp 0.8s 0.4s ease both;
    }
    .lang-tag {
      font-family: var(--font-ui);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 5px 14px;
      border: 1px solid rgba(255,85,0,0.75);
      border-radius: 999px;
      color: #ffffff;
      background: rgba(255,85,0,0.18);
      text-shadow: 0 1px 4px rgba(0,0,0,0.7);
      backdrop-filter: blur(4px);
    }

    .hero-cta-group {
      display: flex;
      gap: 14px;
      margin-top: clamp(20px, 3vh, 36px);
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeSlideUp 0.8s 0.5s ease both;
    }

    .btn {
      font-family: var(--font-ui);
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 14px 32px;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
      position: relative; overflow: hidden;
    }
    .btn::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(255,255,255,0.1);
      transform: translateX(-100%) skewX(-15deg);
      transition: transform 0.4s;
    }
    .btn:hover::before { transform: translateX(110%) skewX(-15deg); }
    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      background: var(--brand);
      color: #000;
      font-weight: 700;
      border: none;
      box-shadow: 0 8px 32px rgba(255,85,0,0.4);
    }
    .btn-primary:hover { box-shadow: 0 12px 40px rgba(255,85,0,0.6); }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border: 1px solid rgba(255,255,255,0.25);
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.6); }



    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 0.5; }
    }

    /* ─── NAVIGATION ─────────────────────────────────────────── */
    #navwrap {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 500;
      transform: translateY(-100%);
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
    }
    #navwrap.is-visible {
      transform: translateY(0);
      background: rgba(6,6,8,0.9);
      backdrop-filter: blur(20px) saturate(150%);
      border-bottom: 1px solid rgba(255,85,0,0.12);
    }

    .nav {
      max-width: var(--max);
      margin: 0 auto;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--font-ui);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .brand img { width: 34px; height: 34px; border-radius: 50%; }

    .nav-links {
      display: flex; gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-ui);
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
      background: var(--brand);
      transform: scaleX(0);
      transition: transform 0.25s;
    }
    .nav-links a:hover { color: var(--ink); text-decoration: none; }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-social {
      display: flex; gap: 14px; align-items: center;
    }
    .nav-social a {
      width: 18px; height: 18px;
      opacity: 0.6;
      transition: opacity 0.2s, color 0.2s;
      display: block;
    }
    .nav-social a:hover { opacity: 1; color: var(--brand); }
    .nav-social svg { width: 18px; height: 18px; }

    .nav-toggle {
      display: none;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 6px;
      padding: 8px;
      cursor: pointer;
    }
    .nav-toggle span {
      display: block; width: 20px; height: 1.5px;
      background: var(--ink);
      margin: 5px 0;
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    /* ─── SECTIONS ───────────────────────────────────────────── */
    section { scroll-margin-top: 80px; }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 100px 24px;
    }

    .section-label {
      font-family: var(--font-ui);
      font-size: 0.72rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 12px;
      display: flex; align-items: center; gap: 12px;
    }
    .section-label::before {
      content: '';
      display: block; width: 30px; height: 1px;
      background: var(--brand);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 5rem);
      line-height: 1;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--muted);
      max-width: 520px;
    }

    /* ─── MARQUEE ─────────────────────────────────────────────── */
    .marquee-strip {
      overflow: hidden;
      border-top: 1px solid rgba(255,85,0,0.12);
      border-bottom: 1px solid rgba(255,85,0,0.12);
      padding: 14px 0;
      background: rgba(255,85,0,0.03);
    }
    .marquee-inner {
      display: flex;
      gap: 40px;
      white-space: nowrap;
      animation: marquee 22s linear infinite;
      width: max-content;
    }
    .marquee-inner span {
      font-family: var(--font-display);
      font-size: 1.2rem;
      letter-spacing: 0.12em;
      color: var(--brand);
      text-transform: uppercase;
    }
    .marquee-inner .dot {
      color: var(--muted);
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ─── MUSIC / VIDEOS ─────────────────────────────────────── */
    #music { background: var(--bg); }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
    .video-card--channel {
      grid-column: 1 / -1;
    }
    .video-card--channel .video-thumb {
      aspect-ratio: unset !important;
      height: 90px;
    }

    .video-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.06);
      cursor: pointer;
      display: block;
      transform-style: preserve-3d;
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
      transform: perspective(800px) rotateX(2deg);
    }
    .video-card:hover {
      transform: perspective(800px) rotateX(0deg) translateY(-8px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,85,0,0.2);
      text-decoration: none;
    }

    .video-thumb {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }
    .video-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s;
      filter: saturate(0.8) brightness(0.85);
    }
    .video-card:hover .video-thumb img {
      transform: scale(1.06);
      filter: saturate(1.1) brightness(1);
    }

    .video-thumb-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
    }

    .play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 56px; height: 56px;
      border-radius: 50%;
      background: rgba(255,85,0,0.9);
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.3s, background 0.3s;
      box-shadow: 0 0 0 0 rgba(255,85,0,0.4);
    }
    .video-card:hover .play-btn {
      background: var(--brand);
      transform: translate(-50%, -50%) scale(1.15);
      box-shadow: 0 0 0 12px rgba(255,85,0,0);
      animation: ripple 0.6s ease-out;
    }
    @keyframes ripple {
      0% { box-shadow: 0 0 0 0 rgba(255,85,0,0.5); }
      100% { box-shadow: 0 0 0 20px rgba(255,85,0,0); }
    }
    .play-btn svg { width: 20px; height: 20px; margin-left: 3px; }

    .video-info {
      padding: 16px;
    }
    .video-info h3 {
      font-family: var(--font-ui);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .video-info p {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 4px;
    }

    /* ─── GALLERY ─────────────────────────────────────────────── */
    #gallery {
      background: linear-gradient(to bottom, var(--bg), var(--surface));
    }

    .gallery-masonry {
      columns: 3 280px;
      column-gap: 16px;
      margin-top: 48px;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 16px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s;
      filter: saturate(0.7) brightness(0.9);
    }
    .gallery-item:hover img {
      transform: scale(1.05);
      filter: saturate(1.1) brightness(1.05);
    }
    .gallery-item::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(255,85,0,0.3), transparent 50%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .gallery-item:hover::after { opacity: 1; }

    /* ─── ACHIEVEMENTS ───────────────────────────────────────── */
    #achievements { background: var(--surface); }

    .achievements-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 48px;
    }

    .achieve-card {
      background: var(--surface2);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
      transform: perspective(600px) rotateY(0deg);
    }
    .achieve-card:hover {
      transform: perspective(600px) rotateY(-3deg) translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
      border-color: rgba(255,85,0,0.25);
    }
    .achieve-card img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      filter: saturate(0.7);
      transition: filter 0.4s;
    }
    .achieve-card:hover img { filter: saturate(1); }
    .achieve-card-body {
      padding: 18px;
    }
    .achieve-card-body h3 {
      font-family: var(--font-ui);
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .achieve-card-body p {
      font-size: 0.82rem;
      color: var(--muted);
      margin-top: 6px;
    }

    /* ─── STATS ──────────────────────────────────────────────── */
    .stats-bar {
      background: var(--brand);
      padding: 36px 24px;
    }
    .stats-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
    }
    .stat-item { color: #000; }
    .stat-num {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 1;
    }
    .stat-label {
      font-family: var(--font-ui);
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      opacity: 0.75;
      margin-top: 4px;
    }

    /* ─── ABOUT / BIO ────────────────────────────────────────── */
    #bio { background: var(--bg); }

    .bio-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 48px;
    }

    .bio-text p {
      font-size: 1.05rem;
      line-height: 1.8;
      color: rgba(240,237,232,0.75);
      margin-bottom: 20px;
    }

    .members-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }
    .member-tag {
      font-family: var(--font-ui);
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 8px 16px;
      background: var(--surface2);
      border: 1px solid rgba(255,85,0,0.2);
      border-radius: 4px;
      transition: background 0.25s, border-color 0.25s;
    }
    .member-tag:hover { background: rgba(255,85,0,0.1); border-color: rgba(255,85,0,0.5); }

    .bio-visual {
      position: relative;
    }
    .bio-visual-inner {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 1;
    }
    .bio-visual-inner img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: saturate(0.8);
    }
    .bio-visual-inner::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,85,0,0.2), transparent 60%);
      z-index: 1;
    }
    .bio-decor {
      position: absolute;
      top: -16px; right: -16px;
      width: 80%; height: 80%;
      border: 1.5px solid rgba(255,85,0,0.25);
      border-radius: 8px;
      z-index: -1;
    }

    /* Genres list */
    .genres-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }
    .genre-pill {
      font-family: var(--font-ui);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 6px 14px;
      border: 1px solid rgba(255,215,0,0.3);
      border-radius: 999px;
      color: var(--accent);
      background: rgba(255,215,0,0.05);
    }

    /* ─── CONTACT ────────────────────────────────────────────── */
    #contact {
      background: linear-gradient(to bottom, var(--surface), var(--bg));
    }

    .contact-layout {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      margin-top: 48px;
      align-items: start;
    }

    .contact-form-wrap h3 {
      font-family: var(--font-display);
      font-size: 2.2rem;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-family: var(--font-ui);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 14px 16px;
      background: var(--surface2);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      color: var(--ink);
      font-family: var(--font-body);
      font-size: 0.95rem;
      transition: border-color 0.25s, box-shadow 0.25s;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: rgba(255,85,0,0.5);
      box-shadow: 0 0 0 3px rgba(255,85,0,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group select option { background: var(--surface2); }

    .contact-info { padding-top: 16px; }
    .contact-info h3 {
      font-family: var(--font-display);
      font-size: 2.2rem;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .contact-item:last-child { border-bottom: none; }
    .contact-icon {
      width: 42px; height: 42px;
      border-radius: 8px;
      background: rgba(255,85,0,0.1);
      border: 1px solid rgba(255,85,0,0.2);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 18px; height: 18px; color: var(--brand); }
    .contact-item-text span {
      display: block;
      font-family: var(--font-ui);
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .contact-item-text a, .contact-item-text strong {
      font-size: 1rem;
      color: var(--ink);
      transition: color 0.2s;
    }
    .contact-item-text a:hover { color: var(--brand); }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 28px;
    }
    .social-link {
      width: 44px; height: 44px;
      border-radius: 8px;
      background: var(--surface2);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
      color: var(--muted);
    }
    .social-link:hover {
      background: rgba(255,85,0,0.15);
      border-color: rgba(255,85,0,0.4);
      color: var(--brand);
      transform: translateY(-3px);
      text-decoration: none;
    }
    .social-link svg { width: 18px; height: 18px; }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    footer {
      background: var(--bg);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 32px 24px;
    }
    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-brand {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .footer-brand img { width: 28px; height: 28px; border-radius: 50%; }
    .footer-copy {
      font-size: 0.78rem;
      color: var(--muted);
    }

    /* ─── BACK TO TOP ────────────────────────────────────────── */
    .btt {
      position: fixed; right: 24px; bottom: 24px;
      width: 46px; height: 46px;
      border-radius: 6px;
      background: var(--brand);
      color: #000;
      display: flex; align-items: center; justify-content: center;
      z-index: 400;
      cursor: pointer;
      border: none;
      opacity: 0; pointer-events: none;
      transform: translateY(16px);
      transition: opacity 0.3s, transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 6px 24px rgba(255,85,0,0.35);
    }
    .btt.is-visible { opacity: 1; pointer-events: all; transform: translateY(0); }
    .btt:hover { box-shadow: 0 10px 32px rgba(255,85,0,0.55); transform: translateY(-3px); }
    .btt svg { width: 20px; height: 20px; }

    /* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      opacity: 0; transform: translateX(-40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-left.is-visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0; transform: translateX(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal-right.is-visible { opacity: 1; transform: translateX(0); }

    /* ─── LIGHTBOX ───────────────────────────────────────────── */
    .lightbox {
      display: none;
      position: fixed; inset: 0;
      background: rgba(0,0,0,0.95);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }
    .lightbox.is-open { display: flex; }
    .lightbox img {
      max-width: 92vw; max-height: 88vh;
      border-radius: 8px;
      box-shadow: 0 40px 120px rgba(0,0,0,0.8);
    }
    .lightbox-close {
      position: absolute; top: 24px; right: 24px;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      font-size: 1.4rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .lightbox-close:hover { background: rgba(255,85,0,0.4); }

    /* ─── 3D TILT CARDS ──────────────────────────────────────── */
    .tilt-card {
      transform-style: preserve-3d;
      transition: transform 0.1s ease-out;
    }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .video-grid { grid-template-columns: 1fr 1fr; }
      .video-card--channel { grid-column: 1 / -1; }
      .achievements-grid { grid-template-columns: 1fr 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .bio-layout { grid-template-columns: 1fr; gap: 40px; }
      .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-social { display: none; }
      .nav-toggle { display: block; }
      #navwrap.is-open .nav-links { 
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(6,6,8,0.98);
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,85,0,0.12);
      }
      #navwrap.is-open .nav-social { display: flex; }
      .video-grid { grid-template-columns: 1fr; }
      .video-card--channel { grid-column: 1; }
      .achievements-grid { grid-template-columns: 1fr; }
      .gallery-masonry { columns: 2 200px; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
      .cursor, .cursor-ring { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }

    /* ─────────────────────────────────────────────────────────
       ADDED FOR MULTI-PAGE SEO LANDING PAGES
       (inner-page hero, breadcrumbs, packages, FAQ, testimonials,
       nav dropdown) — appended, does not touch homepage styles above.
    ───────────────────────────────────────────────────────── */

    /* Lighter hero for inner pages: static image instead of video/3D,
       shorter height so content is reachable faster (better for SEO
       landing pages where the goal is the content below, not the show). */
    #home.hero-inner-page {
      min-height: 62vh;
      min-height: 62svh;
    }
    .hero-static-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      filter: saturate(1.3) brightness(0.6) contrast(1.05);
      z-index: 0;
    }
    #home.hero-inner-page .hero-logo { display: none; }
    #home.hero-inner-page .hero-title { font-size: clamp(2.2rem, 7vw, 5.5rem); }

    /* Breadcrumb */
    .breadcrumb {
      max-width: var(--max);
      margin: 0 auto;
      padding: 18px 24px 0;
      font-family: var(--font-ui);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .breadcrumb a { color: var(--muted); }
    .breadcrumb a:hover { color: var(--brand); }
    .breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
    .breadcrumb .current { color: var(--ink); }

    /* Intro / rich-text content block for landing pages */
    .content-block p {
      font-size: 1.02rem;
      line-height: 1.85;
      color: rgba(240,237,232,0.78);
      margin-bottom: 18px;
      max-width: 780px;
    }
    .content-block ul {
      margin: 0 0 20px 20px;
      color: rgba(240,237,232,0.78);
      line-height: 1.9;
    }

    /* Service / offering cards (reuses achieve-card look) */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .service-card {
      background: var(--surface2);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px;
      padding: 24px;
      transition: transform 0.3s, border-color 0.3s;
    }
    .service-card:hover { border-color: rgba(255,85,0,0.3); transform: translateY(-4px); }
    .service-card h3 {
      font-family: var(--font-ui);
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--brand);
      margin-bottom: 8px;
    }
    .service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

    /* Pricing / package cards */
    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .price-card {
      background: var(--surface2);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px;
      padding: 28px 24px;
      text-align: center;
      transition: transform 0.3s, border-color 0.3s;
    }
    .price-card.is-popular { border-color: rgba(255,85,0,0.5); position: relative; }
    .price-card.is-popular::before {
      content: 'Most Booked';
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--brand); color: #000;
      font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.14em;
      text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
      font-weight: 700;
    }
    .price-card:hover { transform: translateY(-4px); border-color: rgba(255,85,0,0.3); }
    .price-card h3 {
      font-family: var(--font-ui); font-size: 0.95rem; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--ink); margin-bottom: 10px;
    }
    .price-card .price {
      font-family: var(--font-display); font-size: 1.8rem; color: var(--brand);
      margin-bottom: 12px;
    }
    .price-card p.desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

    /* FAQ */
    .faq-list { margin-top: 40px; max-width: 780px; }
    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding: 18px 0;
    }
    .faq-item summary {
      font-family: var(--font-ui);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      cursor: pointer;
      list-style: none;
      display: flex; align-items: center; justify-content: space-between;
      color: var(--ink);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--brand);
      transition: transform 0.25s;
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item p {
      margin-top: 12px;
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* Testimonials */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .testimonial-card {
      background: var(--surface2);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px;
      padding: 22px;
    }
    .testimonial-card p.quote {
      font-size: 0.92rem;
      line-height: 1.7;
      color: rgba(240,237,232,0.85);
      font-style: italic;
      margin-bottom: 14px;
    }
    .testimonial-card .stars { color: var(--accent); font-size: 0.8rem; margin-bottom: 10px; letter-spacing: 2px; }
    .testimonial-card .author {
      font-family: var(--font-ui);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brand);
    }

    /* Nav dropdown (Services) */
    .nav-item-dropdown { position: relative; }
    .nav-dropdown-menu {
      position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
      background: rgba(10,10,14,0.98);
      border: 1px solid rgba(255,85,0,0.15);
      border-radius: 8px;
      padding: 8px;
      min-width: 220px;
      display: none;
      flex-direction: column;
      z-index: 50;
    }
    .nav-item-dropdown:hover .nav-dropdown-menu { display: flex; }
    .nav-dropdown-menu a {
      padding: 10px 14px;
      font-size: 0.74rem;
      border-radius: 6px;
      white-space: nowrap;
    }
    .nav-dropdown-menu a:hover { background: rgba(255,85,0,0.1); color: var(--ink); }
    .nav-dropdown-menu a::after { display: none; }

    /* Internal-linking footer nav */
    .footer-links {
      display: flex; gap: 20px; flex-wrap: wrap;
      font-family: var(--font-ui); font-size: 0.75rem;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--muted);
    }
    .footer-links a:hover { color: var(--brand); }

    @media (max-width: 1024px) {
      .service-grid { grid-template-columns: 1fr; }
      .price-grid { grid-template-columns: 1fr; }
      .testimonial-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-item-dropdown .nav-dropdown-menu { position: static; transform: none; margin-top: 6px; border: none; padding-left: 12px; }
    }
