* {
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #ffffff;
    overflow-x: hidden;
  }

  .container {
    margin: 3%;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(39, 39, 39, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    animation: containerFade 1s ease-in;
  }

  @keyframes containerFade {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .profile {
    width: 280px;
    height: 280px;
    border: solid 4px rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 162, 255, 0.3);
    border-radius: 50%;
    transition: all 0.5s ease;
    object-fit: contain;
    animation: profilePulse 3s infinite;
  }

  @keyframes profilePulse {
    0% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.808); }
    50% { box-shadow: 0 0 50px rgba(0, 157, 255, 0.5); }
    100% { box-shadow: 0 0 30px rgba(0, 81, 255, 0.3); }
  }

  .Poster {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 1000;
  }

  .Poster::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  }

  .Poster iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }

  .container ul li {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 15px 0;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
  }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .container ul li:nth-child(1) { animation-delay: 0.1s; }
  .container ul li:nth-child(2) { animation-delay: 0.2s; }
  .container ul li:nth-child(3) { animation-delay: 0.3s; }
  .container ul li:nth-child(4) { animation-delay: 0.4s; }
  .container ul li:nth-child(5) { animation-delay: 0.5s; }

  .container ul li:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  }

  .button-text {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
  }

  .button-text::before {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
  }

  .container ul li:hover .button-text::before {
    left: 100%;
  }

  .header {
    text-align: center;
    padding: 30px 0;
    font-family: 'Super Friday', sans-serif;
  }

  .header h1 {
    font-size: 4em;
    font-weight: 700;
    background:  #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
  }

  .header p {
    font-size: 1.3em;
  }

  footer {
    margin-top: 40px;
    padding: 30px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 20px 20px;
  }

  .footer-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-info {
    margin-bottom: 25px;
  }

  .contact-info h3 {
    color: #ffffff;
    font-size: 1.2em;
    margin-bottom: 15px;
  }

  .contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 8px 0;
    font-size: 0.9em;
  }

  .contact-info i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.6);
  }

  .cta-section {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
  }

  .cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.9em;
  }

  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8em;
  }

  .ticket-links {
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    padding: 0;
  }

  .ticket-links li {
    margin: 15px 0;
    list-style: none;
  }

  .ticket-links .button-text {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
  }

  .ticket-links .button-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .ticket-links i {
    font-size: 20px;
    margin-right: 15px;
    width: 24px;
    text-align: center;
  }

  .ticket-links p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
  }

  /* Refined gradient combinations */
  .ticket-links li:nth-child(1) .button-text {
    background: linear-gradient(135deg, #c72d2d, #ff4141);
  }
  /* 135deg, #2c2c2c, #4a4a4a */
  .ticket-links li:nth-child(2) .button-text {
    background: linear-gradient(135deg, #d1af07, #fecb00);
  }

  .ticket-links li:nth-child(3) .button-text {
    background: linear-gradient(135deg, #912fb8, #592fbc);
  }

  .ticket-links li:nth-child(4) .button-text {
    background: linear-gradient(135deg, #1a237e, #283593);
  }

  .ticket-links .spotify {
    background: linear-gradient(135deg, #18af4d, #0D8A45);
  }

  .ticket-links .pvr {
    background: linear-gradient(135deg, #d1af07, #fecb00);
  }

  /* Enhanced hover effects */
  .ticket-links .button-text:hover {
    background-position: right center;
    background-size: 200% auto;
    transition: all 0.5s ease;
  }

  .ticket-links li:nth-child(1) .button-text:hover {
    background: linear-gradient(135deg, #FF416C, #FF4B2B, #FF416C);
    background-size: 200% auto;
  }

  .ticket-links li:nth-child(2) .button-text:hover {
    background: linear-gradient(135deg, #fecb00, #FF4B2B, #FF416C);
    background-size: 200% auto;
  } 

  .ticket-links li:nth-child(3) .button-text:hover {
    background: linear-gradient(135deg, #b53ce3, #592fbc);
    background-size: 200% auto;
  }

  .ticket-links li:nth-child(4) .button-text:hover {
    background: linear-gradient(135deg, #1a237e, #283593);
    background-size: 200% auto;
  }

  .ticket-links .spotify:hover {
    background: linear-gradient(135deg, #1ed760, #0D8A45, #1ed760);
    background-size: 200% auto;
  }

  /* Hover icon animation */
  .ticket-links .button-text:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
  }

  /* Restaurant Menu Styles */
  .menu-container {
    width: 90%;
    max-width: 400px;
    margin: 20px auto;
    position: relative;
}

.menu-toggle {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(142, 68, 173, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(142, 68, 173, 0.6);
}

.menu-toggle:hover::before {
    opacity: 1;
}

.menu-toggle i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover i {
    transform: scale(1.1);
}

.menu-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    color: #333;
    border-radius: 25px 25px 0 0;
    padding: 25px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
    display: none;
}

.menu-panel.active {
    transform: translateY(0);
    opacity: 1;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.menu-header h3 {
    margin: 0;
    color: #8e44ad;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6c757d;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-menu:hover {
    color: #495057;
    background-color: #e9ecef;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-category {
    margin-bottom: 25px;
    background: white;
    border-radius: 15px;
    padding: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.menu-category h4 {
    color: #8e44ad;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-category h4 i {
    font-size: 20px;
}

.menu-item {
    margin: 12px 0;
    padding: 10px 0;
    border-bottom: 1px dashed #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 500;
    color: #495057;
    flex: 1;
}

.item-price {
    font-weight: 600;
    color: #8e44ad;
    margin-left: 15px;
    white-space: nowrap;
}

.menu-tag {
    display: inline-block;
    padding: 3px 8px;
    background: #e9ecef;
    color: #6c757d;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 10px;
}

.veg-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #28a745;
    display: inline-block;
    margin-right: 8px;
    position: relative;
}

.veg-indicator::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

.non-veg-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #dc3545;
    display: inline-block;
    margin-right: 8px;
    position: relative;
}

.non-veg-indicator::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

.menu-search {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.menu-search:focus {
    outline: none;
    border-color: #8e44ad;
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.2);
}

/* Backdrop effect */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

/* Floating action button for cart */
/* .menu-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(142, 68, 173, 0.4);
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.menu-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.6);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
} */

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-panel {
        padding: 20px 15px;
        max-height: 75vh;
    }
    
    .menu-category {
        padding: 15px;
    }
    
    .menu-header h3 {
        font-size: 20px;
    }
    
    /* .menu-cart-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .cart-badge {
        width: 20px;
        height: 20px;
        font-size: 10px;
    } */
}

  /* Media queries for mobile */
  @media (max-width: 768px) {
    .container {
      margin: 2%;
    }
    
    .profile {
      width: 200px;
      height: 200px;
    }
    
    .header h1 {
      font-size: 2.5em;
    }
    
    .header p {
      font-size: 1em;
    }
    
    .ticket-links {
      width: 95%;
    }
    
    .ticket-links .button-text {
      padding: 14px 20px;
    }
    
    .ticket-links i {
      font-size: 18px;
    }
    
    .ticket-links p {
      font-size: 14px;
    }
    
    /* .menu-panel {
      padding: 15px;
    }
    
    .menu-items h4 {
      font-size: 16px;
    }
    
    .menu-items p {
      font-size: 14px;
    } */
    
    footer {
      padding: 20px 15px;
    }
    
    .contact-info h3 {
      font-size: 1.1em;
    }
    
    .contact-info p,
    .cta-section p {
      font-size: 0.85em;
    }
    
    .cta-button {
      padding: 8px 16px;
      font-size: 0.9em;
    }
  }