* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #0a1a1a; /* Base color for transition */
      background-image: linear-gradient(180deg, #0a1a1a 0%, #0d1f1f 50%, #0a1a1a 100%);
      background-attachment: fixed;
      min-height: 100vh;
      color: #f5f5f0;
      position: relative;
      /* Prevent horizontal overflow causing glitches */
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('https://i.ibb.co/p60sgbYR/menu-Back-Overlay.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.50;
      pointer-events: none;
      z-index: 0;
      /* GPU acceleration for the fixed overlay */
      transform: translateZ(0);
      will-change: transform;
    }

    .container {
      max-width: 480px;
      margin: 0 auto;
      padding: 40px 24px;
      position: relative;
      z-index: 1;
    }

    /* Header */
    .header {
      text-align: center;
      margin-bottom: 40px;
    }

    .logo-img {
      width: 160px;
      height: 160px;
      object-fit: contain;
      margin: 0 auto 20px;
      display: block;
      filter: drop-shadow(0 0 20px rgba(212, 184, 150, 0.3));
    }

    .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 500;
      color: #d4b896;
      line-height: 1.2;
      margin-bottom: 8px;
      letter-spacing: 2px;
      text-shadow: 0 2px 10px rgba(212, 184, 150, 0.3);
    }

    .brand-tagline {
      font-size: 14px;
      color: #4ade80;
      font-weight: 400;
      letter-spacing: 4px;
      text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
    }

    /* New decorative separator with glow */
    .separator {
      width: 120px;
      height: 2px;
      background: linear-gradient(90deg, transparent, #c9a876, #d4b896, #c9a876, transparent);
      margin: 0 auto 36px;
      box-shadow: 0 0 15px rgba(201, 168, 118, 0.5);
    }

    /* Enhanced Quick Actions with icons */
    .quick-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .action-btn {
      flex: 1 1 calc(50% - 12px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 18px 16px;
      text-decoration: none;
      border-radius: 16px;
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .action-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    }

    .action-btn:active {
      transform: scale(0.97);
    }

    .action-btn img {
      width: 200px;
      height: auto;
      object-fit: contain;
    }

    .action-btn.google {
      background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
      color: #333;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .action-btn.tripadvisor {
      background: linear-gradient(135deg, #34E0A1 0%, #00AA6C 100%);
      color: #000;
    }

    /* More attractive social section */
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 18px;
      text-align: center;
      color: #d4b896;
      letter-spacing: 3px;
      text-shadow: 0 2px 10px rgba(212, 184, 150, 0.3);
    }

    .note-card {
      display: flex;
      align-items: center;
      gap: 15px;
      background: rgba(212, 184, 150, 0.05);
      border: 1px solid rgba(212, 184, 150, 0.1);
      border-radius: 12px;
      padding: 12px 20px;
      margin: 0 auto 30px;
      max-width: 90%;
      backdrop-filter: blur(5px);
    }

    .note-icon svg {
      width: 20px;
      height: 20px;
      stroke: #c9a876;
      opacity: 0.8;
    }

    .menu-note {
      text-align: left;
      font-size: 13px;
      color: #8aa0a0;
      margin: 0;
      line-height: 1.4;
      font-style: italic;
    }

    .social-grid {
      display: flex;
      gap: 6px;
      justify-content: center;
      margin-bottom: 36px;
    }

    .social-btn {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .social-btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .social-btn:active {
      transform: scale(0.92);
    }

    .social-btn svg {
      width: 20px;
      height: 20px;
      fill: #fff;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    /* Enhanced Menu Section with category tabs */
    .menu-container {
      margin-bottom: 50px;
    }

    .menu-tabs {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      z-index: 1000;
      background: linear-gradient(135deg, rgba(13, 34, 34, 0.95) 0%, rgba(15, 40, 40, 0.95) 100%);
      backdrop-filter: blur(10px);
      padding: 12px 20px;
      border-radius: 30px;
      border: 1px solid rgba(42, 64, 64, 0.8);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 118, 0.2);
      width: 320px;
    }

    .menu-tab {
      flex: 1 1 120px;
      padding: 12px 20px;
      background: transparent;
      border: 1px solid #2a4040;
      border-radius: 25px;
      color: #8aa0a0;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      letter-spacing: 0.5px;
      white-space: nowrap;
      text-align: center;
    }

    .menu-tab:hover {
      background: rgba(201, 168, 118, 0.2);
      border-color: rgba(201, 168, 118, 0.6);
      color: #d4b896;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(201, 168, 118, 0.3);
    }

    .menu-tab.active {
      background: linear-gradient(135deg, #c9a876 0%, #d4b896 100%);
      color: #0a1a1a;
      border-color: #c9a876;
      box-shadow: 0 4px 15px rgba(201, 168, 118, 0.5);
      transform: translateY(-2px);
    }

    .menu-section {
      background: linear-gradient(135deg, #0d2222 0%, #0f2828 100%);
      border-radius: 20px;
      padding: 28px 24px;
      border: 1px solid #1a3535;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .menu-category {
      margin-bottom: 48px;
      padding-bottom: 24px;
      position: relative;
    }

    .menu-category:not(:last-child)::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 10%;
      width: 80%;
      height: 1px;
      background: linear-gradient(90deg, 
        transparent 0%, 
        #c9a876 35%, 
        transparent 45%, 
        transparent 55%, 
        #c9a876 65%, 
        transparent 100%
      );
      opacity: 0.4;
      z-index: 1;
    }

    .menu-category:not(:last-child)::before {
      content: '';
      position: absolute;
      bottom: -22px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 15px;
      background-color: transparent;
      /* Aesthetic Category Separator Ornament */
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' fill='none' stroke='%23d4b896' stroke-width='1.5'%3E%3Cpath d='M30 10 L 45 10 M 55 10 L 70 10' /%3E%3Cpath d='M45 10 Q 50 2 55 10 T 50 18 T 45 10' fill='%23d4b896' fill-opacity='0.2' /%3E%3Ccircle cx='50' cy='10' r='2' fill='%23d4b896' /%3E%3C/svg%3E");
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 2;
    }

    .category-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      padding-bottom: 12px;
      border-bottom: 1px solid #1a3535;
    }

    .category-icon {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .category-icon svg {
      width: 32px;
      height: 32px;
      stroke: #c9a876;
      stroke-width: 1.5;
      fill: none;
    }

    .footer-title {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 500;
      color: #d4b896;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .footer-review-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 20px;
      background: linear-gradient(135deg, #c9a876 0%, #d4b896 100%);
      color: #0a1a1a;
      text-decoration: none;
      border-radius: 25px;
      font-size: 13px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
    }

    .footer-review-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(201, 168, 118, 0.4);
      background: linear-gradient(135deg, #d4b896 0%, #e8ccab 100%);
    }

    .category-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 500;
      color: #d4b896;
      letter-spacing: 1px;
    }

    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px dashed #1a3030;
    }

    .menu-item:last-child {
      border-bottom: none;
    }

    .item-name {
      font-weight: 400;
      font-size: 14px;
      color: #e8e8e0;
      letter-spacing: 0.3px;
    }

    .item-price {
      font-weight: 500;
      color: #c9a876;
      font-size: 14px;
      margin-left: 16px;
      white-space: nowrap;
      text-shadow: 0 0 10px rgba(201, 168, 118, 0.3);
    }

    /* Footer */
    .footer {
      text-align: center;
      margin-top: 36px;
      padding-top: 24px;
      padding-bottom: 100px;
      border-top: 1px solid #1a3030;
    }

    .footer p {
      font-size: 12px;
      color: #5a7a7a;
      letter-spacing: 0.5px;
    }

    .wifi-info {
      background: linear-gradient(135deg, #0d2222 0%, #0f2828 100%);
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 16px;
      border: 1px solid #1a3535;
    }

    .wifi-info p {
      font-size: 13px;
      color: #8aa0a0;
    }

    .wifi-info strong {
      color: #4ade80;
    }

    /* Scroll-to button */
    #sc-btn {
      position: fixed;
      top: 20px;
      left: 20px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      background: #ff5500;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s, opacity 0.2s;
    }

    #sc-btn:hover {
      transform: scale(1.1);
    }

    #sc-btn img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
    }

    /* Reviews & Social Modal Button */
    .reviews-btn {
      width: 100%;
      padding: 16px 24px;
      margin-bottom: 24px;
      background: linear-gradient(135deg, rgba(201, 168, 118, 0.3) 0%, rgba(212, 184, 150, 0.25) 100%);
      border: 1px solid rgba(201, 168, 118, 0.6);
      border-radius: 16px;
      color: #d4b896;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
      position: relative;
      overflow: hidden;
      animation: glowingPulse 2s ease-in-out infinite;
      box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 5px rgba(201, 168, 118, 0.4),
        0 0 10px rgba(212, 184, 150, 0.3),
        inset 0 0 10px rgba(201, 168, 118, 0.1);
      text-shadow: 0 0 10px rgba(212, 184, 150, 0.5);
    }

    .reviews-btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg,
          transparent,
          rgba(250, 172, 77, 0.562),
          transparent);
      /* background: linear-gradient(45deg,
          transparent,
          rgba(212, 184, 150, 0.1),
          transparent); */
      animation: shimmer 1s infinite;
    }



    @keyframes shimmer {
      0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
      }

      100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
      }
    }

    .reviews-btn:hover {
      background: linear-gradient(135deg, rgba(201, 168, 118, 0.4) 0%, rgba(212, 184, 150, 0.35) 100%);
      border-color: rgba(201, 168, 118, 1);
      transform: translateY(-2px) scale(1.02);
      animation: none;

    }

    .reviews-btn:active {
      transform: translateY(0) scale(0.98);
      animation: none;
    }

    .reviews-btn b {
      position: relative;
      z-index: 1;
    }

    /* Modal Overlay */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 26, 26, 0.95);
      backdrop-filter: blur(10px);
      z-index: 10000;
      overflow-y: auto;
      animation: fadeIn 0.3s ease;
    }

    .modal-overlay.active {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      padding: 20px;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .modal-content {
      background: linear-gradient(135deg, #0d2222 0%, #0f2828 100%);
      border-radius: 20px;
      padding: 32px 24px;
      margin: 20px auto;
      max-width: 480px;
      width: 100%;
      border: 1px solid #1a3535;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
      position: relative;
      animation: slideUp 0.3s ease;
    }

    @keyframes slideUp {
      from {
        transform: translateY(30px);
        opacity: 0;
      }

      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(201, 168, 118, 0.2);
      border: 1px solid rgba(201, 168, 118, 0.4);
      color: #d4b896;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      line-height: 1;
    }

    .modal-close:hover {
      background: rgba(201, 168, 118, 0.4);
      transform: rotate(90deg);
    }

    .modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 500;
      color: #d4b896;
      margin-bottom: 24px;
      text-align: center;
      letter-spacing: 2px;
      text-shadow: 0 2px 10px rgba(212, 184, 150, 0.3);
    }

    .modal-section {
      margin-bottom: 32px;
    }

    .modal-section-title {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 500;
      color: #d4b896;
      margin-bottom: 16px;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .modal-section-title svg {
      width: 20px;
      height: 20px;
      stroke: #c9a876;
      stroke-width: 1.5;
      fill: none;
    }

    .review-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .review-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px;
      background: rgba(26, 53, 53, 0.5);
      border: 1px solid #1a3535;
      border-radius: 12px;
      text-decoration: none;
      color: #e8e8e0;
      transition: all 0.3s ease;
    }

    .review-link:hover {
      background: rgba(201, 168, 118, 0.1);
      border-color: rgba(201, 168, 118, 0.5);
      transform: translateX(5px);
    }

    .review-link-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .review-link-text {
      flex: 1;
    }

    .review-link-title {
      font-weight: 500;
      font-size: 14px;
      margin-bottom: 4px;
      color: #d4b896;
    }

    .review-link-desc {
      font-size: 12px;
      color: #8aa0a0;
    }

    .modal-social-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    @media (max-width: 480px) {
      .modal-content {
        padding: 24px 20px;
        margin: 10px;
      }

      .modal-title {
        font-size: 20px;
      }

      .review-link {
        padding: 12px;
      }

      .modal-social-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Responsive adjustments for floating tabs */
    @media (max-width: 768px) {
      .menu-tabs {
        bottom: 15px;
        padding: 10px 16px;
        gap: 8px;
        max-width: calc(100% - 32px);
      }

      .menu-tab {
        padding: 10px 16px;
        font-size: 12px;
      }

      .footer {
        padding-bottom: 90px;
      }
    }

    @media (max-width: 480px) {
      .menu-tabs {
        bottom: 10px;
        padding: 10px;
        gap: 8px;
        width: 280px;
        border-radius: 20px;
      }

      .menu-tab {
        padding: 8px 12px;
        font-size: 11px;
        flex: 1 1 110px;
      }

      .footer {
        padding-bottom: 85px;
      }
    }
