/* ══════════════════════════════════════════════════════
   DEMO FIVEM V3 — style.css
   Premium dark gaming theme
══════════════════════════════════════════════════════ */

/* ===== V3 PREMIUM OVERRIDES ===== */
    :root {
      --bg: #0a0a0f;
      --bg-2: #0e0e15;
      --bg-3: #12121a;
      --bg-card: #12121a;
      --accent: #D4935A;
      --accent-rgb: 212,147,90;
      --text: #e8e4dc;
      --text-muted: rgba(232,228,220,0.45);
      --border: #1a1a25;
      --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --radius: 12px;
      --radius-sm: 8px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ===== CINEMATIC INTRO ===== */
    #cinematic-intro {
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: #050508;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #cinematic-intro.done { opacity: 0; pointer-events: none; }
    .intro-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 0%, #050508 70%);
      z-index: 0;
    }
    .intro-bar-top, .intro-bar-bottom {
      position: absolute;
      left: 0; right: 0;
      height: 14vh;
      background: #000;
      z-index: 2;
    }
    .intro-bar-top { top: 0; }
    .intro-bar-bottom { bottom: 0; }
    #introTitle {
      position: relative;
      z-index: 3;
      text-align: center;
    }
    #introServerName {
      display: block;
      font-size: clamp(2rem, 6vw, 5rem);
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text);
    }
    .intro-title-sub {
      display: block;
      font-size: clamp(0.7rem, 1.5vw, 1rem);
      letter-spacing: 0.4em;
      color: var(--accent);
      margin-top: 0.5rem;
      font-weight: 500;
    }
    #introProgressBar {
      position: absolute;
      bottom: 15vh;
      left: 50%;
      transform: translateX(-50%);
      width: min(280px, 60vw);
      height: 2px;
      background: rgba(255,255,255,0.06);
      border-radius: 2px;
      z-index: 3;
      overflow: hidden;
    }
    #introProgressBar::after {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 0%;
      background: var(--accent);
      border-radius: 2px;
      transition: width 0.3s ease;
    }

    /* ===== CUSTOM CURSOR ===== */
    #cursor {
      position: fixed;
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      pointer-events: none;
      z-index: 100000;
      transition: transform 0.1s ease;
      transform: translate(-50%, -50%);
    }
    #cursor-ring {
      position: fixed;
      width: 36px;
      height: 36px;
      border: 1.5px solid rgba(var(--accent-rgb), 0.3);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999;
      transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
      transform: translate(-50%, -50%);
    }

    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 clamp(1.5rem, 4vw, 3rem);
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10, 10, 15, 0.6);
      backdrop-filter: blur(24px) saturate(1.2);
      -webkit-backdrop-filter: blur(24px) saturate(1.2);
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }
    #navbar.scrolled {
      background: rgba(10, 10, 15, 0.92);
      box-shadow: 0 1px 40px rgba(0,0,0,0.4);
    }
    .nav-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .server-logo-el.nav-logo-img {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--bg-card);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .nav-logo-name {
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .nav-center {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .nav-link {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.25s ease;
      position: relative;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--text);
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--accent);
      transition: width 0.3s ease;
    }
    .nav-link:hover::after { width: 100%; }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .nav-status-pill {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 100px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #555;
      flex-shrink: 0;
    }
    .status-dot.online { background: #34d399; box-shadow: 0 0 8px rgba(52,211,153,0.5); }
    .status-dot.offline { background: #ef4444; }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ===== HERO — SPLIT SCREEN ===== */
    .hero {
      position: relative;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: none;
    }
    .hero-bg-blur {
      position: absolute;
      inset: 0;
      backdrop-filter: blur(2px);
      z-index: 1;
    }
    .hero-bg-placeholder {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0a0a0f 0%, #151520 50%, #0a0a0f 100%);
      z-index: 0;
    }
    .hero-bg-svg {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
      color: rgba(255,255,255,0.015);
      pointer-events: none;
    }
    .hero-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.6) 50%, var(--bg) 100%);
      z-index: 2;
    }
    .hero-gradient-side {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.4) 40%, transparent 70%);
      z-index: 2;
    }
    #heroParticles {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 4;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3rem);
      padding-top: 72px;
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
      min-height: 100dvh;
    }
    .hero-left {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .hero-label::before {
      content: '';
      width: 24px;
      height: 1.5px;
      background: var(--accent);
    }
    .hero-title {
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 800;
      line-height: 0.92;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      color: var(--text);
    }
    .hero-description {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 520px;
    }
    .hero-status-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 100px;
      background: rgba(52, 211, 153, 0.08);
      border: 1px solid rgba(52, 211, 153, 0.15);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #34d399;
    }
    .players-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 100px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .players-badge .count {
      color: var(--text);
      font-weight: 700;
      font-variant-numeric: tabular-nums;
    }
    .hero-cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      padding-top: 0.5rem;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: var(--radius-sm);
      font-family: var(--font);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .btn-accent {
      background: var(--accent);
      color: #0a0a0f;
    }
    .btn-accent:hover {
      background: #e0a56a;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.25);
    }
    .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1px solid rgba(255,255,255,0.12);
    }
    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }
    .btn-hero { padding: 16px 36px; }

    /* Hero right — server info card */
    .hero-right {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-info-card {
      width: 100%;
      max-width: 380px;
      background: rgba(18, 18, 26, 0.6);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .hero-info-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .hero-info-card-header .server-logo-el {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--bg-card);
      overflow: hidden;
    }
    .hero-info-card-title {
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .hero-info-card-sub {
      font-size: 0.7rem;
      color: var(--text-muted);
      letter-spacing: 0.06em;
    }
    .info-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0;
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    .info-row-label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .info-row-value {
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text);
    }
    .hero-info-status {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      background: rgba(52,211,153,0.06);
      border: 1px solid rgba(52,211,153,0.1);
    }
    .hero-info-status-text {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #34d399;
    }

    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      color: var(--text-muted);
      text-transform: uppercase;
      animation: scrollBounce 2s ease infinite;
    }
    .scroll-arrow {
      width: 1px;
      height: 32px;
      background: linear-gradient(to bottom, var(--text-muted), transparent);
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ===== MARQUEE ===== */
    .marquee-wrap {
      overflow: hidden;
      padding: 18px 0;
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .marquee-track, #marqueeTrack {
      display: flex;
      gap: 3rem;
      white-space: nowrap;
      animation: marqueeScroll 30s linear infinite;
      width: max-content;
    }
    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ===== SECTIONS COMMON ===== */
    .section-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3rem);
    }
    .section-num {
      position: absolute;
      top: -0.5rem;
      right: 0;
      font-size: clamp(4rem, 8vw, 8rem);
      font-weight: 900;
      color: rgba(255,255,255,0.02);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }
    .section-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-label::before {
      content: '';
      width: 20px;
      height: 1.5px;
      background: var(--accent);
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.01em;
      text-transform: uppercase;
      margin-bottom: 2.5rem;
    }

    /* ===== FEATURES BENTO GRID ===== */
    .features-section {
      padding: 7rem 0;
    }
    #featuresGrid, .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    /* ===== STREAMERS ===== */
    .streamers-section {
      padding: 7rem 0;
      background: var(--bg-2);
      border-top: 1px solid var(--border);
    }
    #streamersLive, .streamers-live {
      margin-bottom: 2rem;
    }
    #streamersGrid, .streamers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.25rem;
    }

    /* ===== GALLERY ===== */
    .gallery-section {
      padding: 7rem 0;
    }
    #galleryGrid, .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1rem;
    }

    /* ===== LIGHTBOX ===== */
    #lightbox {
      position: fixed;
      inset: 0;
      z-index: 10000;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(12px);
      display: none;
      align-items: center;
      justify-content: center;
      cursor: zoom-out;
    }
    #lightbox.active { display: flex; }
    #lightboxImg {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      border-radius: var(--radius-sm);
    }
    #lightboxClose {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      color: var(--text-muted);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      cursor: pointer;
      z-index: 10001;
      transition: color 0.2s;
    }
    #lightboxClose:hover { color: var(--text); }

    /* ===== DIVIDER CTA ===== */
    .divider-section {
      position: relative;
      min-height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      text-align: center;
    }
    #dividerBg, .divider-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      z-index: 0;
    }
    .divider-bg-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, var(--bg) 0%, rgba(10,10,15,0.5) 30%, rgba(10,10,15,0.5) 70%, var(--bg) 100%);
      z-index: 1;
    }
    .divider-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10,10,15,0.6);
      z-index: 1;
    }
    .divider-lines {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--border);
      z-index: 2;
    }
    .divider-lines-bottom {
      top: auto;
      bottom: 0;
    }
    .divider-content {
      position: relative;
      z-index: 3;
      padding: 5rem 2rem;
    }
    .divider-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .divider-title {
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
    }
    .divider-sub {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ===== STORE ===== */
    .store-section {
      padding: 7rem 0;
      background: var(--bg-2);
      border-top: 1px solid var(--border);
    }
    #itemsGrid, .items-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.25rem;
    }

    /* ===== INSTAGRAM ===== */
    .instagram-section {
      padding: 7rem 0;
    }
    #instagramGrid, .instagram-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1rem;
    }

    /* ===== BLOG ===== */
    #blogSection {
      padding: 7rem 0;
      background: var(--bg-3);
      border-top: 1px solid var(--border);
    }
    #blogGrid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    /* ===== DESCRIPTION / SERVER INFO ===== */
    .server-info-section {
      padding: 5rem 0;
      background: var(--bg);
    }
    .info-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .info-cell {
      text-align: center;
      padding: 2rem 1rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .info-value {
      font-size: 1.5rem;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .info-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    /* ===== DESCRIPTION SECTION ===== */
    .description-section {
      padding: 7rem 0;
    }
    .description-layout {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .description-text p:last-child {
      color: var(--text-muted);
      line-height: 1.8;
      margin-top: 1.5rem;
    }
    .description-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .desc-stat-card {
      padding: 1.5rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
    }
    .desc-stat-label {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }
    .desc-stat-value {
      font-size: 1.2rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    /* ===== DISCORD ===== */
    .discord-section {
      padding: 7rem 0;
      background: var(--bg-2);
      border-top: 1px solid var(--border);
    }
    .discord-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .discord-text p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 2rem;
    }
    .btn-discord-large {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      border-radius: var(--radius-sm);
      background: #5865F2;
      color: #fff;
      font-family: var(--font);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .btn-discord-large:hover {
      background: #4752c4;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(88, 101, 242, 0.3);
    }
    #discordWidgetWrap, .discord-widget-wrap {
      min-height: 300px;
      border-radius: var(--radius);
      overflow: hidden;
    }

    /* ===== CTA SECTION ===== */
    .cta-section {
      position: relative;
      padding: 6rem 0;
      text-align: center;
      overflow: hidden;
      border-top: 1px solid var(--border);
    }
    .cta-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: clamp(6rem, 20vw, 20rem);
      font-weight: 900;
      text-transform: uppercase;
      color: rgba(255,255,255,0.015);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }
    .cta-content {
      position: relative;
      z-index: 1;
    }
    .cta-content .section-label { justify-content: center; }
    .cta-content .section-title { text-align: center; }
    .cta-subtitle {
      color: var(--text-muted);
      max-width: 500px;
      margin: 0 auto 2rem;
      line-height: 1.7;
    }
    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-discord {
      background: #5865F2;
      color: #fff;
    }
    .btn-discord:hover {
      background: #4752c4;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(88,101,242,0.3);
    }

    /* ===== FOOTER ===== */
    footer {
      padding: 3rem 0;
      border-top: 1px solid var(--border);
      background: var(--bg);
    }
    .footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 clamp(1.5rem, 4vw, 3rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .server-logo-el.footer-logo-wrap {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: var(--bg-card);
      overflow: hidden;
    }
    .footer-name {
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .footer-copy {
      font-size: 0.72rem;
      color: var(--text-muted);
      letter-spacing: 0.04em;
    }
    .footer-socials {
      display: flex;
      gap: 0.75rem;
    }
    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      color: var(--text-muted);
      transition: all 0.25s ease;
      text-decoration: none;
    }
    .social-link:hover {
      color: var(--accent);
      border-color: rgba(var(--accent-rgb), 0.3);
      background: rgba(var(--accent-rgb), 0.06);
      transform: translateY(-2px);
    }

    /* ===== POWERED BY ===== */
    .powered-by {
      text-align: center;
      padding: 1rem 0;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      border-top: 1px solid rgba(255,255,255,0.03);
    }
    .powered-by a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
    }
    .powered-by a:hover { text-decoration: underline; }

    /* ===== VISIT COUNTER ===== */
    #visitCounterWrap {
      display: none;
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal-section { opacity: 1; }
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== MOBILE NAV PANEL ===== */
    .nav-mobile-panel {
      display: none;
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 999;
      background: rgba(10, 10, 15, 0.97);
      backdrop-filter: blur(24px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    .nav-mobile-panel.open { display: flex; }
    .nav-mobile-panel .nav-link {
      font-size: 1.2rem;
      letter-spacing: 0.15em;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .description-layout { grid-template-columns: 1fr; }
      .discord-layout { grid-template-columns: 1fr; }
      #featuresGrid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-center { display: none; }
      .nav-hamburger { display: flex; }
      .nav-status-pill span:not(.status-dot):not(#statusText) { display: none; }
      #featuresGrid, .features-grid { grid-template-columns: 1fr; }
      .info-grid { grid-template-columns: 1fr; }
      .description-visual { grid-template-columns: 1fr; }
      .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
      .hero-cta { flex-direction: column; }
      .hero-cta .btn { width: 100%; text-align: center; }
      .footer-inner {
        flex-direction: column;
        text-align: center;
      }
      .cta-buttons { flex-direction: column; align-items: center; }
    }

    @media (max-width: 480px) {
      .hero-status-row { flex-direction: column; align-items: flex-start; }
    }
