* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gradient: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
            --secondary-gradient: linear-gradient(45deg, #fb5607, #ffbe0b, #8338ec);
            --dark-purple: #2a0845;
            --neon-pink: #ff10f0;
            --neon-cyan: #00f5ff;
            --space-gray: #1a1a2e;
            --accent-orange: #ff9500;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: var(--dark-purple);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: var(--primary-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--neon-pink);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-pink);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        main {
            margin-top: 80px;
        }

        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: var(--primary-gradient);
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
            text-align: center;
            position: relative;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-content {
            width: 100%;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 900;
            margin-bottom: 2rem;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
            animation: fadeInUp 1.5s ease;
        }

        .hero p {
            font-size: clamp(1.2rem, 3vw, 2rem);
            margin-bottom: 3rem;
            opacity: 0.9;
            animation: fadeInUp 1.5s ease 0.3s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: transparent;
            border: 3px solid white;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1.5s ease 0.6s both;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: white;
            transition: left 0.3s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            color: var(--dark-purple);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .about {
            background: linear-gradient(135deg, var(--space-gray), var(--dark-purple));
        }

        .about h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 3rem;
            text-align: center;
            background: var(--secondary-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 16, 240, 0.3);
            transition: all 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 16, 240, 0.3);
        }

        .about-card h3 {
            color: var(--neon-pink);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .lyrics {
            background: var(--dark-purple);
            text-align: center;
        }

        .lyrics h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 3rem;
            color: var(--neon-cyan);
        }

        .lyrics-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .lyric-fragment {
            background: linear-gradient(45deg, rgba(255, 16, 240, 0.2), rgba(0, 245, 255, 0.2));
            padding: 2rem;
            border-radius: 15px;
            font-style: italic;
            font-size: 1.1rem;
            border: 1px solid var(--neon-cyan);
            transition: all 0.3s ease;
        }

        .lyric-fragment:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 245, 255, 0.4);
        }

        .events {
            background: linear-gradient(135deg, var(--space-gray), #000);
        }

        .events h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 3rem;
            text-align: center;
            color: var(--accent-orange);
        }

        .events-table {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 149, 0, 0.3);
        }

        .events-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .events-table th,
        .events-table td {
            padding: 1.5rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .events-table th {
            background: var(--accent-orange);
            color: var(--dark-purple);
            font-weight: bold;
        }

        .events-table tr:hover {
            background: rgba(255, 149, 0, 0.1);
        }

        .gallery {
            background: var(--dark-purple);
        }

        .gallery h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 3rem;
            text-align: center;
            background: var(--primary-gradient);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-cyan));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(255, 16, 240, 0.4);
        }

        .faq {
            background: linear-gradient(135deg, var(--space-gray), var(--dark-purple));
        }

        .faq h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 3rem;
            text-align: center;
            color: var(--neon-pink);
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            margin-bottom: 1rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 16, 240, 0.3);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(255, 16, 240, 0.1);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            max-height: 200px;
            padding: 1.5rem;
        }

        .newsletter {
            background: var(--primary-gradient);
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
            text-align: center;
        }

        .newsletter h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 2rem;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 250px;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
            color: var(--dark-purple);
        }

        .newsletter-form button {
            padding: 1rem 2rem;
            background: var(--dark-purple);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--space-gray);
            transform: translateY(-3px);
        }

        .contact {
            background: linear-gradient(135deg, var(--space-gray), #000);
        }

        .contact h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 3rem;
            text-align: center;
            color: var(--neon-cyan);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            gap: 2rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            color: var(--neon-cyan);
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 2px solid var(--neon-cyan);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-pink);
            box-shadow: 0 0 20px rgba(255, 16, 240, 0.3);
        }

        .contact-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .submit-btn,
        .amazon-btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .submit-btn {
            background: var(--neon-cyan);
            color: var(--dark-purple);
        }

        .amazon-btn {
            background: var(--accent-orange);
            color: white;
        }

        .submit-btn:hover,
        .amazon-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        footer {
            background: var(--dark-purple);
            padding: 3rem 2rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 16, 240, 0.3);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--neon-pink);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        .modal-content {
            background: var(--primary-gradient);
            margin: 15% auto;
            padding: 2rem;
            border-radius: 20px;
            width: 80%;
            max-width: 400px;
            text-align: center;
            position: relative;
        }

        .close {
            position: absolute;
            right: 1rem;
            top: 1rem;
            font-size: 2rem;
            cursor: pointer;
            color: white;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--space-gray);
            padding: 1rem 2rem;
            z-index: 1500;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .cookie-banner.hidden {
            display: none;
        }

        .cookie-text {
            flex: 1;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        .cookie-accept {
            background: var(--neon-pink);
            color: white;
        }

        .cookie-decline {
            background: transparent;
            color: white;
            border: 1px solid white;
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--space-gray);
                flex-direction: column;
                justify-content: start;
                align-items: center;
                padding-top: 3rem;
                transition: left 0.3s ease;
            }

            nav ul.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .newsletter-form {
                flex-direction: column;
                align-items: center;
            }

            .newsletter-form input {
                min-width: 100%;
            }

            .contact-buttons {
                flex-direction: column;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .events-table {
                overflow-x: auto;
            }
        }

