:root {
    --pink: #ff00ff;
    --cyan: #00ffff;
    --purple: #8b00ff;
    --dark: #0a0a0f;
    --darker: #050508;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated grid background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(transparent 0%, var(--darker) 100%),
        linear-gradient(90deg, rgba(255,0,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(0,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: -2;
}

@keyframes gridMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 0 100%, 0 50px, 50px 0; }
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--cyan);
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    50% { transform: translateY(-100vh) translateX(20px); }
}

/* Main content */
main {
    position: relative;
    z-index: 1;
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(255, 0, 255, 0.3),
        0 0 80px rgba(0, 255, 255, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.2) contrast(1.1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 60%,
        var(--darker) 100%
    );
    pointer-events: none;
}

.glitch-wrapper {
    position: relative;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 15vw, 10rem);
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    text-shadow: 
        0 0 10px var(--pink),
        0 0 20px var(--pink),
        0 0 40px var(--pink),
        0 0 80px var(--purple);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 
            0 0 10px var(--pink),
            0 0 20px var(--pink),
            0 0 40px var(--pink),
            0 0 80px var(--purple);
    }
    to {
        text-shadow: 
            0 0 20px var(--cyan),
            0 0 30px var(--cyan),
            0 0 60px var(--cyan),
            0 0 100px var(--pink);
    }
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--cyan);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--pink);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(42px, 9999px, 44px, 0); }
    5% { clip: rect(12px, 9999px, 59px, 0); }
    10% { clip: rect(48px, 9999px, 29px, 0); }
    15% { clip: rect(42px, 9999px, 73px, 0); }
    20% { clip: rect(63px, 9999px, 27px, 0); }
    25% { clip: rect(34px, 9999px, 55px, 0); }
    30% { clip: rect(86px, 9999px, 73px, 0); }
    35% { clip: rect(20px, 9999px, 20px, 0); }
    40% { clip: rect(26px, 9999px, 60px, 0); }
    45% { clip: rect(25px, 9999px, 66px, 0); }
    50% { clip: rect(57px, 9999px, 98px, 0); }
    55% { clip: rect(5px, 9999px, 46px, 0); }
    60% { clip: rect(82px, 9999px, 31px, 0); }
    65% { clip: rect(54px, 9999px, 27px, 0); }
    70% { clip: rect(28px, 9999px, 99px, 0); }
    75% { clip: rect(45px, 9999px, 69px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    85% { clip: rect(54px, 9999px, 84px, 0); }
    90% { clip: rect(45px, 9999px, 47px, 0); }
    95% { clip: rect(37px, 9999px, 20px, 0); }
    100% { clip: rect(4px, 9999px, 91px, 0); }
}

.tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.8rem, 3vw, 1.2rem);
    letter-spacing: 0.5em;
    margin-top: 2rem;
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

.cta-row {
    margin-top: 3rem;
}

.cta-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--pink);
    text-decoration: none;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.cta-btn:hover {
    background: var(--pink);
    color: var(--dark);
    box-shadow: 0 0 30px var(--pink);
}

.cta-btn:hover::before {
    left: 100%;
}

/* Sections */
section {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan);
    letter-spacing: 0.3em;
}

.about p {
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.genre-tags span {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--purple);
    color: var(--purple);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.genre-tags span:hover {
    background: var(--purple);
    color: var(--dark);
    box-shadow: 0 0 20px var(--purple);
}

/* Contact form */
#booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,0,255,0.3);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
}

.submit-btn {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    border: none;
    color: #fff;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255,0,255,0.4);
}

/* Footer */
footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,0,255,0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--cyan);
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--pink);
    text-shadow: 0 0 10px var(--pink);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 600px) {
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .genre-tags {
        gap: 0.5rem;
    }
    
    .genre-tags span {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }
}
