  /* Base & Reset */
  *, *::before, *::after {
    box-sizing: border-box;
  }

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

  body {
    overflow-x: hidden;
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #0D0A0B;
  }

  ::-webkit-scrollbar-thumb {
    background: #2E2224;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #C9A84C;
  }

  /* Selection */
  ::selection {
    background: rgba(91, 14, 26, 0.6);
    color: #F5EDE8;
  }

  /* Gold shimmer animation for decorative elements */
  @keyframes shimmer {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
  }

  /* Floating animation for stat cards */
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }

  .floating-card-1 { animation: float 6s ease-in-out infinite; }
  .floating-card-2 { animation: float 6s ease-in-out 1s infinite; }
  .floating-card-3 { animation: float 6s ease-in-out 2s infinite; }

  /* Scroll reveal base styles (progressive enhancement) */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  /* Mobile menu active state */
  #mobile-menu.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Navbar glass effect when scrolled */
  #navbar.scrolled {
    background: rgba(13, 10, 11, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(46, 34, 36, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  }

  /* Hamburger animation */
  #menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  #menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
  }

  #menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 1.25rem;
  }

  /* Mobile link fade-in */
  .mobile-link {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  }

  #mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
  }

  #mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.05s; }
  #mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.1s; }
  #mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.15s; }
  #mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.2s; }
  #mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.25s; }

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .font-display {
      line-height: 1.15;
    }
  }

  /* Reduced motion preference */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    html {
      scroll-behavior: auto;
    }
  }
