  /* ===== CUSTOM STYLES ===== */

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }

  /* Selection color */
  ::selection {
    background: rgba(255, 71, 51, 0.3);
    color: #f6f6f7;
  }

  /* Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #1c1c21;
  }
  ::-webkit-scrollbar-thumb {
    background: #54545e;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #ff4733;
  }

  /* ===== NAVBAR ===== */
  #navbar {
    background: transparent;
  }
  #navbar.scrolled {
    background: rgba(14, 14, 17, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(84, 84, 94, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  }

  /* ===== HERO STAT CARDS ===== */
  @media (prefers-reduced-motion: no-preference) {
    .stat-card {
      animation: floatCard 6s ease-in-out infinite;
    }
    .stat-card:nth-child(1) { animation-delay: 0s; }
    .stat-card:nth-child(2) { animation-delay: -1.5s; }
    .stat-card:nth-child(3) { animation-delay: -3s; }
    .stat-card:nth-child(4) { animation-delay: -4.5s; }
  }

  @keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }

  /* ===== MENU CARDS ===== */
  .menu-card {
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: no-preference) {
    .menu-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 71, 51, 0.15);
    }
  }

  /* ===== SCROLL REVEAL (below fold only, progressive enhancement) ===== */
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
  }

  /* ===== BUTTONS ===== */
  a:focus-visible, button:focus-visible {
    outline: 2px solid #ff4733;
    outline-offset: 2px;
    border-radius: 4px;
  }

  /* ===== MOBILE MENU ===== */
  #mobile-menu {
    animation: slideDown 0.25s ease;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 640px) {
    .font-display {
      line-height: 1.1;
    }
  }
