:root {
    --vantablack: #050505;
    --obsidian: #0d0d0d;
    --neon-crimson: #ff003c;
    --crimson-glow: rgba(255, 0, 60, 0.4);
    --vip-gold: #c5a059;
    --gold-glow: rgba(197, 160, 89, 0.3);
    --crisp-white: #f5f5f5;
    --muted-white: rgba(245, 245, 245, 0.6);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-med: 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    background-color: var(--vantablack);
}

body {
    font-family: var(--font-body);
    color: var(--crisp-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    color: var(--crisp-white);
}

.section-title::after {
    content: '○ △ □';
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.5rem;
    margin-top: 1rem;
    color: var(--neon-crimson);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

/* Hero Section */
.hero-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a0005 0%, var(--vantablack) 100%);
}

.hero-content {
    z-index: 10;
    max-width: 800px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
}

.shape-svg {
    width: 100%;
    height: 100%;
}

#morphing-shape {
    transition: all var(--transition-slow);
    filter: drop-shadow(0 0 10px var(--crimson-glow));
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 1rem;
}

.hero-subheadline {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--muted-white);
    margin-bottom: 3rem;
    letter-spacing: 0.2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    border: 1px solid var(--neon-crimson);
    color: var(--neon-crimson);
    background: transparent;
    transition: var(--transition-med);
    cursor: pointer;
}

.cta-button:hover {
    background: var(--neon-crimson);
    color: var(--crisp-white);
    box-shadow: 0 0 20px var(--crimson-glow);
}

.cta-button.gold {
    border-color: var(--vip-gold);
    color: var(--vip-gold);
}

.cta-button.gold:hover {
    background: var(--vip-gold);
    color: var(--vantablack);
    box-shadow: 0 0 20px var(--gold-glow);
}

.cta-button.outline {
    border-color: var(--muted-white);
    color: var(--crisp-white);
}

/* Rules Section */
.rules-section {
    background: var(--obsidian);
}

.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.rules-list {
    list-style: none;
    margin: 2rem 0;
}

.rules-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.rules-list li::before {
    content: '△';
    position: absolute;
    left: 0;
    color: var(--neon-crimson);
}

.rules-conclusion {
    font-family: var(--font-heading);
    color: var(--vip-gold);
    font-size: 1.4rem;
    font-style: italic;
}

.glass-frame {
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 0, 60, 0.05) 0%, rgba(197, 160, 89, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-frame::before {
    content: '○ △ □';
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 2rem;
}

.glass-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-crimson);
    box-shadow: 0 0 15px var(--neon-crimson);
    animation: scan 4s linear infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Arena Menu */
.arena-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu-level {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-med);
    position: relative;
}

.menu-level:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--neon-crimson);
}

.menu-level.active {
    border-color: var(--vip-gold);
}

.symbol-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-crimson);
}

.level-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
    margin-bottom: 1rem;
    color: var(--vip-gold);
}

.level-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.level-desc, .item-list {
    font-size: 0.9rem;
    color: var(--muted-white);
    list-style: none;
}

.item-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.add-to-cart {
    background: transparent;
    border: 1px solid var(--neon-crimson);
    color: var(--neon-crimson);
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    cursor: pointer;
    text-transform: uppercase;
    font-family: var(--font-heading);
    transition: var(--transition-med);
    margin-left: 1rem;
}

.add-to-cart:hover {
    background: var(--neon-crimson);
    color: var(--crisp-white);
    box-shadow: 0 0 10px var(--crimson-glow);
}

.price {
    color: var(--vip-gold);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-left: auto;
}

.drinks-section {
    margin-top: 4rem;
    background: rgba(255, 0, 60, 0.02);
    padding: 4rem 2rem;
    border: 1px solid rgba(255, 0, 60, 0.1);
}

.drinks-grid {
    max-width: 600px;
    margin: 2rem auto 0;
}

.special-item {
    color: var(--vip-gold);
    font-weight: 700;
    text-shadow: 0 0 10px var(--gold-glow);
    margin-top: 1rem;
}

/* VIP Experience */
.vip-section {
    background: radial-gradient(ellipse at center, #111 0%, var(--vantablack) 100%);
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vip-quote {
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--crisp-white);
    position: relative;
    padding: 2rem;
}

.vip-quote::before, .vip-quote::after {
    content: '"';
    font-size: 4rem;
    font-family: serif;
    color: var(--neon-crimson);
    position: absolute;
    opacity: 0.5;
}

.vip-quote::before { left: -10px; top: 0; }
.vip-quote::after { right: -10px; bottom: 0; }

/* Footer */
.footer {
    text-align: center;
    background: var(--vantablack);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-symbols {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    letter-spacing: 2rem;
    color: var(--neon-crimson);
    opacity: 0.5;
}

.footer-info {
    margin-bottom: 2.5rem;
    color: var(--muted-white);
    font-size: 0.95rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-info strong {
    color: var(--crisp-white);
    letter-spacing: 0.1rem;
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glitch {
    0% { text-shadow: 2px 0 var(--neon-crimson), -2px 0 var(--vip-gold); }
    50% { text-shadow: -2px 0 var(--neon-crimson), 2px 0 var(--vip-gold); }
    100% { text-shadow: 2px 0 var(--neon-crimson), -2px 0 var(--vip-gold); }
}

.hero-headline {
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards, glitch 1.5s linear infinite;
}

.text-reveal {
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* OVERLAYS & E-COMMERCE */

.base-glass {
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Floating Cart */
.cart-floating-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--neon-crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px var(--crimson-glow);
    z-index: 99;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-floating-icon:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--crisp-white);
    color: var(--vantablack);
    font-weight: 900;
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Drawer & Modal Overlays */
.drawer-overlay, .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 1000;
}

.drawer-overlay.open, .modal-overlay.open {
    display: block;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    padding: 3rem;
    min-height: 400px;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--muted-white);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--neon-crimson);
}

/* Check-out UI */
.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.step-title {
    margin-bottom: 2rem;
    text-align: center;
}

.choice-grid, .payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.choice-card, .payment-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--crisp-white);
    transition: all 0.3s;
}

.choice-card:hover, .payment-option:hover {
    border-color: var(--neon-crimson);
    background: rgba(255, 0, 60, 0.05);
}

.choice-icon { font-size: 3rem; }

/* Forms */
.vip-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vip-form input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    color: var(--crisp-white);
    font-family: var(--font-body);
}

.vip-form input:focus {
    border-color: var(--vip-gold);
    outline: none;
}

/* Cart List */
.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    margin: 2rem 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.remove-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    filter: grayscale(1);
    transition: filter 0.3s;
}

.remove-btn:hover {
    filter: grayscale(0);
}

.full-width {
    width: 100%;
}

@keyframes shake {
    0%, 100% { transform: scale(1); }
    10%, 30%, 50%, 70%, 90% { transform: scale(1.1) rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: scale(1.1) rotate(5deg); }
}

.cart-floating-icon.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

/* ELIMINATED ANIMATION (Squid Game Inspired) */

.item-list li {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden; /* For the red flash */
}

.item-list li.eliminated {
    animation: item-glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    background: rgba(255, 0, 60, 0.15);
    border-color: var(--neon-crimson);
}

.item-list li.eliminated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 30px;
    height: 30px;
    border: 2px solid var(--neon-crimson);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    animation: sniper-aim 0.6s ease-out forwards;
}

.item-list li.eliminated::after {
    content: 'ELIMINATED';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem; /* Much larger */
    color: var(--neon-crimson);
    letter-spacing: 4px;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    text-shadow: 0 0 10px var(--crimson-glow);
    animation: stamp-effect 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes stamp-effect {
    0% { transform: translate(-50%, -50%) scale(5) rotate(-15deg); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1) rotate(-5deg); opacity: 1; }
    80% { transform: translate(-50%, -50%) scale(1.1) rotate(-5deg); opacity: 1; filter: brightness(1.5); }
    100% { transform: translate(-50%, -50%) scale(1) rotate(-5deg); opacity: 0; }
}

@keyframes sniper-aim {
    0% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    80% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; border-color: #fff; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

@keyframes item-glitch {
    0% { transform: translate(0); background: rgba(255, 0, 60, 0); }
    20% { transform: translate(-3px, 3px); background: rgba(255, 0, 60, 0.3); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); background: rgba(255, 0, 60, 0); }
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-50%) scale(0.8); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
    100% { opacity: 0; transform: translateY(-50%) scale(1); }
}

@media (max-width: 768px) {
    .rules-grid { grid-template-columns: 1fr; }
    .arena-grid { grid-template-columns: 1fr; }
    .hero-headline { font-size: 2.5rem; letter-spacing: 0.5rem; }
    .footer-actions { flex-direction: column; align-items: center; }
}
