  /* Base & Utilities */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    overflow-x: hidden;
  }

  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #091420;
  }

  ::-webkit-scrollbar-thumb {
    background: #1b2d45;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #7dd4b8;
  }

  ::selection {
    background: rgba(168, 230, 207, 0.3);
    color: #fff;
  }

  /* Floating Card Animations */
  .floating-card {
    animation: float 6s ease-in-out infinite;
  }

  .card-sushi {
    animation-delay: 0s;
  }

  .card-hibachi {
    animation-delay: -2s;
  }

  .card-stats {
    animation-delay: -4s;
  }

  .card-hours {
    animation-delay: -1s;
  }

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

  /* Scroll Reveal */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Navbar */
  #navbar.scrolled {
    background: rgba(9, 20, 32, 0.9);
    backdrop-blur-xl;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .nav-link {
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a8e6cf;
    transition: width 0.3s ease;
    border-radius: 1px;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  /* Mobile Menu */
  #mobileMenu {
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-link {
    position: relative;
  }

  /* Image hover effects */
  .group img {
    will-change: transform;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .floating-card {
      display: none;
    }
  }

  /* Focus visible */
  :focus-visible {
    outline: 2px solid #a8e6cf;
    outline-offset: 2px;
  }

  /* Form transitions */
  input:focus, textarea:focus {
    background: rgba(255, 255, 255, 0.08);
  }
