/* Monaco Bar - Neon Theme CSS */
:root {
    --neon-pink: #ff4466;
    --neon-pink-glow: 0 0 10px #ff4466, 0 0 20px #ff4466, 0 0 40px #ff4466;
    --neon-blue: #00ffff;
    --neon-blue-glow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 40px #00ffff;
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --dark-card: #151515;
    --text-white: #ffffff;
    --text-gray: #aaaaaa;
    --gradient-pink: linear-gradient(135deg, #ff4466, #ff6666);
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    font-weight: 500;
}

h1, h3, h4 {
    font-family: 'Tourney', sans-serif;
    font-weight: 600;
}

h2 {
    font-family: 'Tourney', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Neon Text Effects */
.neon-text {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    text-shadow: var(--neon-blue-glow);
}

.neon-text-pink {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-pink);
    text-shadow: var(--neon-pink-glow);
}

.neon-glow {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    color: var(--neon-blue);
    text-shadow: var(--neon-blue-glow);
    animation: neon-flicker 2s infinite alternate;
}

.neon-glow-pink {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    color: var(--neon-pink);
    text-shadow: var(--neon-pink-glow);
    animation: neon-flicker 2s infinite alternate;
    animation-delay: 0.5s;
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    52% { opacity: 1; }
    54% { opacity: 0.9; }
}

/* === ANIMATIONS GLOBALES === */

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink); }
    50% { box-shadow: 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink), 0 0 60px var(--neon-pink); }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 5px var(--neon-pink)); }
    50% { filter: drop-shadow(0 0 20px var(--neon-pink)); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 68, 102, 0.3);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    text-decoration: none;
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links li {
    white-space: nowrap;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: var(--neon-pink-glow);
    transition: width 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Buttons */
.btn-neon {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    white-space: nowrap;
}

.btn-neon:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
}

.btn-neon-pink {
    padding: 10px 20px;
    background: var(--neon-pink);
    border: 2px solid var(--neon-pink);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 68, 102, 0.3);
    white-space: nowrap;
}

.btn-neon-pink:hover {
    background: transparent;
    color: var(--neon-pink);
    box-shadow: var(--neon-pink-glow);
    transform: translateY(-3px) scale(1.05);
}

.btn-neon-pink.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 10001;
    padding: 5px;
    position: relative;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--neon-pink);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--neon-pink);
    transform-origin: center;
}

.hamburger.active {
    display: none !important;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1566737236500-c8ac43014a67?w=1920') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(255, 68, 102, 0.2));
}

/* Smoke Effect - Natural realistic smoke */
.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.smoke-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.smoke-puff {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(200, 200, 200, 0.25) 30%,
        rgba(150, 150, 150, 0.1) 50%,
        transparent 70%);
    filter: blur(25px);
    opacity: 0;
}

/* Layer 1 - Bottom smoke, slower */
.layer-1 { z-index: 1; }

.puff-1 {
    width: 300px;
    height: 250px;
    left: 5%;
    bottom: -50px;
    animation: smokeDrift1 5s ease-out forwards;
}

.puff-2 {
    width: 400px;
    height: 300px;
    left: 35%;
    bottom: -80px;
    animation: smokeDrift2 5.5s ease-out 0.2s forwards;
}

.puff-3 {
    width: 350px;
    height: 280px;
    right: 10%;
    bottom: -60px;
    animation: smokeDrift3 5.2s ease-out 0.3s forwards;
}

/* Layer 2 - Middle smoke */
.layer-2 { z-index: 2; }

.puff-4 {
    width: 250px;
    height: 200px;
    left: 15%;
    bottom: -40px;
    animation: smokeDrift4 4.5s ease-out 0.1s forwards;
}

.puff-5 {
    width: 320px;
    height: 260px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -70px;
    animation: smokeDrift5 5s ease-out 0.25s forwards;
}

.puff-6 {
    width: 280px;
    height: 220px;
    right: 20%;
    bottom: -50px;
    animation: smokeDrift6 4.8s ease-out 0.35s forwards;
}

/* Layer 3 - Top wisps, faster */
.layer-3 { z-index: 3; }

.puff-7 {
    width: 200px;
    height: 180px;
    left: 25%;
    bottom: -30px;
    filter: blur(35px);
    animation: smokeDrift7 4s ease-out 0.05s forwards;
}

.puff-8 {
    width: 180px;
    height: 160px;
    left: 55%;
    bottom: -40px;
    filter: blur(30px);
    animation: smokeDrift8 4.2s ease-out 0.15s forwards;
}

.puff-9 {
    width: 220px;
    height: 190px;
    right: 15%;
    bottom: -35px;
    filter: blur(40px);
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 68, 102, 0.15) 0%,
        rgba(255, 68, 102, 0.08) 40%,
        transparent 70%);
    animation: smokeDrift9 4s ease-out 0.28s forwards;
}

/* Floor fog */
.smoke-floor {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 150px;
    background: linear-gradient(to top,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.2) 30%,
        rgba(255, 255, 255, 0.05) 60%,
        transparent 100%);
    filter: blur(15px);
    animation: floorFog 4s ease-out forwards;
}

/* Animations - each puff has unique movement */
@keyframes smokeDrift1 {
    0% { opacity: 0.7; transform: translateY(0) translateX(0) scale(1); }
    30% { opacity: 0.55; transform: translateY(-150px) translateX(30px) scale(1.4); }
    60% { opacity: 0.3; transform: translateY(-350px) translateX(-20px) scale(1.8); }
    100% { opacity: 0; transform: translateY(-550px) translateX(40px) scale(2.2); }
}

@keyframes smokeDrift2 {
    0% { opacity: 0.65; transform: translateY(0) translateX(0) scale(1); }
    25% { opacity: 0.5; transform: translateY(-120px) translateX(-40px) scale(1.3); }
    55% { opacity: 0.25; transform: translateY(-300px) translateX(30px) scale(1.7); }
    100% { opacity: 0; transform: translateY(-500px) translateX(-50px) scale(2); }
}

@keyframes smokeDrift3 {
    0% { opacity: 0.68; transform: translateY(0) translateX(0) scale(1); }
    35% { opacity: 0.5; transform: translateY(-180px) translateX(50px) scale(1.5); }
    65% { opacity: 0.2; transform: translateY(-380px) translateX(-30px) scale(1.9); }
    100% { opacity: 0; transform: translateY(-580px) translateX(20px) scale(2.3); }
}

@keyframes smokeDrift4 {
    0% { opacity: 0.6; transform: translateY(0) translateX(0) scale(1); }
    30% { opacity: 0.45; transform: translateY(-200px) translateX(-50px) scale(1.6); }
    60% { opacity: 0.18; transform: translateY(-420px) translateX(40px) scale(2); }
    100% { opacity: 0; transform: translateY(-600px) translateX(-20px) scale(2.4); }
}

@keyframes smokeDrift5 {
    0% { opacity: 0.7; transform: translateX(-50%) translateY(0) scale(1); }
    25% { opacity: 0.55; transform: translateX(-45%) translateY(-160px) scale(1.4); }
    50% { opacity: 0.3; transform: translateX(-55%) translateY(-340px) scale(1.8); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-550px) scale(2.2); }
}

@keyframes smokeDrift6 {
    0% { opacity: 0.62; transform: translateY(0) translateX(0) scale(1); }
    30% { opacity: 0.45; transform: translateY(-140px) translateX(60px) scale(1.5); }
    60% { opacity: 0.2; transform: translateY(-320px) translateX(-40px) scale(1.9); }
    100% { opacity: 0; transform: translateY(-520px) translateX(30px) scale(2.2); }
}

@keyframes smokeDrift7 {
    0% { opacity: 0.5; transform: translateY(0) translateX(0) scale(1); }
    35% { opacity: 0.35; transform: translateY(-250px) translateX(-70px) scale(1.8); }
    100% { opacity: 0; transform: translateY(-600px) translateX(50px) scale(2.5); }
}

@keyframes smokeDrift8 {
    0% { opacity: 0.48; transform: translateY(0) translateX(0) scale(1); }
    40% { opacity: 0.32; transform: translateY(-280px) translateX(80px) scale(1.9); }
    100% { opacity: 0; transform: translateY(-620px) translateX(-60px) scale(2.6); }
}

@keyframes smokeDrift9 {
    0% { opacity: 0.55; transform: translateY(0) translateX(0) scale(1); }
    35% { opacity: 0.38; transform: translateY(-220px) translateX(-55px) scale(1.7); }
    100% { opacity: 0; transform: translateY(-580px) translateX(70px) scale(2.4); }
}

@keyframes floorFog {
    0% { opacity: 1; transform: scaleY(1); }
    40% { opacity: 0.5; transform: scaleY(0.7); }
    70% { opacity: 0.15; transform: scaleY(0.4); }
    100% { opacity: 0; transform: scaleY(0); }
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: scaleIn 0.8s ease-out;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-date {
    font-size: 1.1rem;
    color: var(--neon-pink);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-hero {
    padding: 15px 40px;
    background: var(--neon-pink);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--neon-pink-glow);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-hero:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--neon-pink), 0 0 60px var(--neon-pink);
    animation: none;
}

.btn-hero-outline {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: var(--neon-blue-glow);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--neon-pink);
    text-shadow: var(--neon-pink-glow);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.section-title.left {
    text-align: left;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.about-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--neon-pink);
    top: -100px;
    right: -100px;
    animation: floatCircle1 8s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--neon-blue);
    bottom: -50px;
    left: -50px;
    animation: floatCircle2 10s ease-in-out infinite;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: #8b00ff;
    top: 50%;
    left: 50%;
    animation: floatCircle3 12s ease-in-out infinite;
}

@keyframes floatCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes floatCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.15); }
}

@keyframes floatCircle3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Subtitle Stars */
.subtitle-star {
    color: var(--neon-pink);
    font-size: 0.8rem;
    margin: 0 10px;
    animation: starPulse 2s ease-in-out infinite;
}

.subtitle-star:last-child {
    animation-delay: 1s;
}

@keyframes starPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Experience Cards */
.experience-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.exp-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(255, 68, 102, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue), var(--neon-pink));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.exp-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px rgba(255, 68, 102, 0.2), 0 0 30px rgba(255, 68, 102, 0.1);
}

.exp-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.exp-card:nth-child(2) .exp-card-icon { animation-delay: 0.5s; }
.exp-card:nth-child(3) .exp-card-icon { animation-delay: 1s; }
.exp-card:nth-child(4) .exp-card-icon { animation-delay: 1.5s; }

.exp-card:hover .exp-card-icon {
    animation: bounce 0.5s ease;
}

.exp-card-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    z-index: -1;
    animation: iconRotate 4s linear infinite;
    opacity: 0.5;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.exp-card-icon i {
    font-size: 1.8rem;
    color: white;
}

.exp-card h3 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.exp-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Showcase */
.about-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.8), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(255, 68, 102, 0.3);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.about-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 68, 102, 0.1), transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: showcaseRotate 10s linear infinite;
}

@keyframes showcaseRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.showcase-image {
    position: relative;
    z-index: 1;
}

.showcase-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.showcase-glow {
    position: absolute;
    inset: -5px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    z-index: -1;
    filter: blur(15px);
    opacity: 0.6;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.02); }
}

.showcase-content {
    position: relative;
    z-index: 1;
}

.showcase-content h3 {
    font-size: 2rem;
    color: var(--neon-pink);
    margin-bottom: 5px;
    text-shadow: var(--neon-pink-glow);
}

.showcase-content h3 i {
    margin-right: 10px;
    animation: bounce 2s ease-in-out infinite;
}

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

.showcase-address {
    font-size: 1.2rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.showcase-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
}

.showcase-hours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 68, 102, 0.1);
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid var(--neon-pink);
    margin-bottom: 25px;
}

.showcase-hours i {
    color: var(--neon-pink);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.showcase-hours span {
    color: white;
    font-weight: 500;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.3rem;
    margin-top: -20px;
    margin-bottom: 50px;
    font-style: italic;
}

/* Title Icon */
.title-icon {
    color: var(--neon-pink);
    font-size: 1.5rem;
    margin-left: 15px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.5; transform: scale(1.2) rotate(15deg); }
}

/* Animated Title */
.animated-title {
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 68, 102, 0.5)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 68, 102, 0.8)); }
}

/* Float Animation */
.animate-float {
    animation: float 4s ease-in-out infinite;
}

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

/* Animated Border */
.animated-border {
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 68, 102, 0.5), inset 0 0 30px rgba(255, 68, 102, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 68, 102, 0.8), 0 0 60px rgba(255, 68, 102, 0.4), inset 0 0 50px rgba(255, 68, 102, 0.2);
    }
}

/* Slide In Animation */
.animate-slide-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.8s ease forwards;
}

@keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
}

/* Fade In Animation */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Pop Animation for Features */
.animate-pop {
    opacity: 0;
    transform: scale(0.5);
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes popIn {
    to { opacity: 1; transform: scale(1); }
}

/* Animation Delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Feature Hover Effects */
.feature {
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-10px) scale(1.1);
}

.feature:hover i {
    color: var(--neon-pink);
    text-shadow: var(--neon-pink-glow);
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Menu Section */
.menu {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/bar-ambiance.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.7);
}

.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.4) 30%,
        rgba(10, 10, 10, 0.4) 70%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

.menu-container {
    position: relative;
    z-index: 1;
}

.menu-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-top: -15px;
    margin-bottom: 30px;
    font-style: italic;
}

/* Happy Hour Badge */
.happy-hour-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 68, 102, 0.2), rgba(255, 165, 0, 0.2));
    border: 2px solid #ffa500;
    padding: 15px 30px;
    border-radius: 50px;
    margin: 0 auto 40px;
    max-width: 300px;
    animation: happyHourPulse 2s ease-in-out infinite;
}

.happy-hour-badge i {
    color: #ffa500;
    font-size: 1.3rem;
    animation: clockSpin 3s linear infinite;
}

@keyframes clockSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.happy-hour-badge span {
    color: #ffa500;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

@keyframes happyHourPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 165, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 165, 0, 0.6); }
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 15px 25px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.menu-tab i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.menu-tab:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.menu-tab:hover i {
    transform: scale(1.2);
    animation: shake 0.5s ease;
}

.menu-tab.active {
    border-color: var(--neon-pink);
    color: white;
    background: linear-gradient(135deg, rgba(255, 68, 102, 0.3), rgba(0, 212, 255, 0.2));
    box-shadow: 0 0 30px rgba(255, 68, 102, 0.4), inset 0 0 20px rgba(255, 68, 102, 0.1);
}

.menu-tab.active i {
    color: var(--neon-pink);
    text-shadow: var(--neon-pink-glow);
    animation: tabIconPulse 2s ease-in-out infinite;
}

@keyframes tabIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.menu-item {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(15, 15, 15, 0.95));
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 68, 102, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out backwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 68, 102, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 50px rgba(255, 68, 102, 0.25), 0 0 30px rgba(255, 68, 102, 0.1);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.menu-item h4 {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    transition: color 0.3s ease;
    flex: 1;
}

.menu-item:hover h4 {
    color: var(--neon-pink);
    text-shadow: var(--neon-pink-glow);
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.happy-hour-price {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffa500;
    background: rgba(255, 165, 0, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.happy-hour-price i {
    font-size: 0.8rem;
}

.menu-item .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: var(--neon-blue-glow);
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--dark-surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    animation: scaleIn 0.5s ease-out backwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-item:nth-child(6) { animation-delay: 0.35s; }

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 68, 102, 0.3);
    z-index: 10;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 68, 102, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    text-shadow: var(--neon-pink-glow);
}

/* Events Section */
.events {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.5)), url('../assets/gallery/events-ambiance.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.6s ease-out backwards;
}

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }
.event-card:nth-child(4) { animation-delay: 0.4s; }

.event-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.3);
}

.event-card:hover .event-icon {
    animation: shake 0.5s ease;
}

.event-card:hover .event-icon i {
    animation: glow-pulse 1s ease infinite;
}

.event-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(255, 68, 102, 0.2), rgba(0, 255, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-pink);
    box-shadow: var(--neon-pink-glow);
}

.event-icon i {
    font-size: 2rem;
    color: var(--neon-pink);
}


.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-blue);
}

.event-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-event {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-event:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
    box-shadow: var(--neon-pink-glow);
}

/* Loyalty Section */
.loyalty {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-surface), var(--dark-bg));
}

.loyalty-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.loyalty-text h2 {
    text-align: left;
}

.loyalty-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.loyalty-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.loyalty-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.1rem;
}

.loyalty-benefits i {
    color: var(--neon-pink);
    text-shadow: var(--neon-pink-glow);
}

/* Loyalty Card Preview */
.loyalty-card-preview {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.card-3d {
    width: 380px;
    height: 240px;
    position: relative;
    transform-style: preserve-3d;
    animation: card-float 3s ease-in-out infinite;
}

@keyframes card-float {
    0%, 100% { transform: rotateY(-10deg) rotateX(5deg); }
    50% { transform: rotateY(10deg) rotateX(-5deg); }
}

.card-front {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    border: 2px solid var(--neon-pink);
    box-shadow: var(--neon-pink-glow), 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.card-front::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 68, 102, 0.1), transparent);
    transform: rotate(45deg);
    animation: card-shine 3s infinite;
}

@keyframes card-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.card-logo {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    border-radius: 8px;
    position: absolute;
    top: 80px;
    left: 30px;
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 2px;
    background: rgba(0, 0, 0, 0.3);
}

.card-number {
    position: absolute;
    bottom: 60px;
    left: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--neon-blue);
    text-shadow: var(--neon-blue-glow);
}

.card-member {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 0.9rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-portrait {
    text-align: center;
    margin-bottom: 20px;
}

.contact-portrait img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-pink);
    box-shadow: var(--neon-pink-glow);
    transition: all 0.4s ease;
    animation: float 4s ease-in-out infinite;
}

.contact-portrait img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--neon-pink), 0 0 60px var(--neon-pink);
}

.contact-portrait p {
    margin-top: 15px;
    color: var(--neon-pink);
    font-family: 'Bangers', cursive;
    font-size: 1.4rem;
    letter-spacing: 2px;
    animation: fadeInUp 0.5s ease-out 0.3s backwards;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Waze Button */
.waze-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 15px;
    background: #33ccff;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.waze-btn img {
    width: 24px;
    height: 24px;
    border-radius: 5px;
}

.waze-btn:hover {
    background: #00bfff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 20px rgba(51, 204, 255, 0.4);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--neon-pink);
    text-shadow: var(--neon-pink-glow);
    width: 30px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--neon-blue);
}

.info-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 2px solid var(--neon-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:nth-child(1) { animation: fadeInUp 0.5s ease-out 0.1s backwards; }
.social-link:nth-child(2) { animation: fadeInUp 0.5s ease-out 0.2s backwards; }
.social-link:nth-child(3) { animation: fadeInUp 0.5s ease-out 0.3s backwards; }
.social-link:nth-child(4) { animation: fadeInUp 0.5s ease-out 0.4s backwards; }

.social-link:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--neon-pink-glow);
}

/* Contact Form */
.contact-form {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 68, 102, 0.2);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: var(--dark-surface);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 68, 102, 0.2);
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

.form-group input:focus + i,
.form-group textarea:focus + i {
    color: var(--neon-pink);
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: var(--neon-pink);
    border: none;
    color: var(--dark-bg);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    box-shadow: var(--neon-pink-glow);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--dark-surface);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 68, 102, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-size: 1.5rem;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--neon-pink);
    cursor: pointer;
    text-shadow: var(--neon-pink-glow);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: var(--neon-pink-glow);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content,
    .loyalty-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .neon-glow,
    .neon-glow-pink {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .section-title {
        font-size: 2rem;
    }

    .card-3d {
        width: 300px;
        height: 190px;
    }

    .card-front {
        padding: 20px;
    }

    .card-logo {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .card-chip {
        width: 40px;
        height: 30px;
        top: 55px;
        left: 20px;
    }

    .card-number {
        bottom: 45px;
        left: 20px;
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .card-member {
        bottom: 20px;
        left: 20px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    /* Menu Section - Mobile */
    .menu {
        padding: 80px 0;
        min-height: auto;
    }

    .menu-bg {
        background-attachment: scroll;
    }

    .menu-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .menu-categories {
        gap: 10px;
        margin-bottom: 35px;
    }

    .menu-tab {
        padding: 12px 15px;
        min-width: 75px;
        font-size: 0.8rem;
        border-radius: 12px;
    }

    .menu-tab i {
        font-size: 1.2rem;
    }

    .menu-tab span {
        font-size: 0.75rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .menu-item {
        padding: 20px;
    }

    .menu-item h4 {
        font-size: 1.1rem;
    }

    .menu-item .price {
        font-size: 1.2rem;
    }

    /* Experience Cards - Mobile */
    .experience-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 40px;
    }

    .exp-card {
        padding: 20px 15px;
    }

    .exp-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .exp-card-icon i {
        font-size: 1.4rem;
    }

    .exp-card h3 {
        font-size: 0.95rem;
    }

    .exp-card p {
        font-size: 0.8rem;
    }

    /* About Showcase - Mobile */
    .about-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
        border-radius: 20px;
    }

    .showcase-content h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .showcase-address {
        text-align: center;
        font-size: 1.1rem;
    }

    .showcase-text {
        text-align: center;
        font-size: 0.95rem;
    }

    .showcase-hours {
        display: flex;
        justify-content: center;
        margin: 0 auto 25px;
    }

    .showcase-content .btn-neon-pink {
        display: block;
        text-align: center;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Floating circles smaller on mobile */
    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
    }

    .circle-3 {
        width: 100px;
        height: 100px;
    }
}

/* Mobile Menu Active State - Full Screen */
body.menu-open {
    overflow: hidden !important;
}

.nav-links.mobile-active {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #000000 !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 9999 !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.nav-links.mobile-active li {
    width: 100%;
    text-align: center;
    list-style: none;
    background-color: #000000;
}

.nav-links.mobile-active a {
    display: block;
    padding: 18px 15px;
    font-size: 1.2rem;
    color: #ffffff !important;
    text-decoration: none;
    border-bottom: 1px solid #222;
    background-color: #000000;
}

.nav-links.mobile-active a:hover,
.nav-links.mobile-active a:active {
    color: #ff4466 !important;
    background-color: #111;
}

.nav-buttons.mobile-active {
    display: flex !important;
    flex-direction: row !important;
    position: fixed !important;
    top: 30px !important;
    bottom: auto !important;
    left: 20px !important;
    right: 20px !important;
    background-color: transparent !important;
    padding: 0 !important;
    gap: 15px !important;
    z-index: 10000 !important;
}

.nav-buttons.mobile-active .btn-neon,
.nav-buttons.mobile-active .btn-neon-pink {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    font-size: 0.9rem;
}

/* Close button for mobile menu */
.mobile-close-btn {
    display: none;
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border: 2px solid #ff4466;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    color: #ff4466;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 68, 102, 0.5), 0 0 40px rgba(255, 68, 102, 0.3);
    text-shadow: 0 0 10px rgba(255, 68, 102, 0.8);
}

.mobile-close-btn:hover {
    background: #ff4466;
    color: #000;
    text-shadow: none;
    box-shadow: 0 0 30px rgba(255, 68, 102, 0.8), 0 0 60px rgba(255, 68, 102, 0.5);
}

.mobile-close-btn.active {
    display: flex;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 25px;
    background: var(--dark-card);
    border: 2px solid var(--neon-pink);
    border-radius: 10px;
    color: white;
    box-shadow: var(--neon-pink-glow);
    z-index: 3000;
    animation: slideIn 0.3s ease;
}

.toast.success {
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.toast.error {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
