* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --neon-cyan: #00FFFF;
            --neon-purple: #FF00FF;
            --neon-orange: #FF6B00;
            --dark-bg: #0a0a0a;
            --darker-bg: #050505;
            --text-white: #ffffff;
            --text-gray: #cccccc;
            --glow-cyan: 0 0 20px var(--neon-cyan);
            --glow-purple: 0 0 20px var(--neon-purple);
            --glow-orange: 0 0 20px var(--neon-orange);
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-white);
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--neon-cyan);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--neon-cyan);
            text-shadow: var(--glow-cyan);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links li a {
            color: var(--text-white);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links li a:hover {
            color: var(--neon-purple);
            background: rgba(255, 0, 255, 0.1);
            box-shadow: var(--glow-purple);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--neon-cyan);
            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: 4rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(45deg, var(--dark-bg), var(--darker-bg));
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/06.jpg') center/cover no-repeat;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--neon-cyan);
            text-shadow: var(--glow-cyan);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px var(--neon-cyan); }
            to { text-shadow: 0 0 30px var(--neon-cyan), 0 0 40px var(--neon-cyan); }
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--text-gray);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, var(--neon-purple), var(--neon-orange));
            color: var(--text-white);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
        }

        .about {
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
            border-radius: 20px;
            margin: 2rem auto;
            border: 1px solid var(--neon-cyan);
        }

        .about h2 {
            font-size: 3rem;
            color: var(--neon-purple);
            text-shadow: var(--glow-purple);
            margin-bottom: 2rem;
            text-align: center;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .about-card {
            background: rgba(255, 255, 255, 0.02);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--neon-orange);
            transition: all 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
        }

        .lyrics {
            text-align: center;
            background: linear-gradient(45deg, var(--darker-bg), var(--dark-bg));
            border-radius: 20px;
            margin: 2rem auto;
        }

        .lyrics h2 {
            font-size: 3rem;
            color: var(--neon-orange);
            text-shadow: var(--glow-orange);
            margin-bottom: 2rem;
        }

        .lyrics-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .lyric-card {
            background: rgba(0, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--neon-cyan);
            font-style: italic;
            font-size: 1.1rem;
        }

        .events {
            background: rgba(255, 0, 255, 0.02);
            border-radius: 20px;
            border: 1px solid var(--neon-purple);
        }

        .events h2 {
            font-size: 3rem;
            color: var(--neon-cyan);
            text-shadow: var(--glow-cyan);
            text-align: center;
            margin-bottom: 3rem;
        }

        .events-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 15px;
            overflow: hidden;
        }

        .events-table th,
        .events-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        }

        .events-table th {
            background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
            color: var(--dark-bg);
            font-weight: bold;
        }

        .gallery h2 {
            font-size: 3rem;
            color: var(--neon-purple);
            text-shadow: var(--glow-purple);
            text-align: center;
            margin-bottom: 3rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            aspect-ratio: 1;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            border: 2px solid var(--neon-orange);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: var(--glow-orange);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .faq h2 {
            font-size: 3rem;
            color: var(--neon-orange);
            text-shadow: var(--glow-orange);
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.02);
            margin-bottom: 1rem;
            border-radius: 15px;
            border: 1px solid var(--neon-cyan);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            background: rgba(0, 255, 255, 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: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(255, 107, 0, 0.1) 100%);
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--neon-purple);
        }

        .newsletter h2 {
            font-size: 3rem;
            color: var(--neon-purple);
            text-shadow: var(--glow-purple);
            margin-bottom: 2rem;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid var(--neon-cyan);
            border-radius: 25px;
            color: var(--text-white);
            font-size: 1rem;
        }

        .newsletter-form input:focus {
            outline: none;
            box-shadow: var(--glow-cyan);
        }

        .contact {
            background: rgba(0, 255, 255, 0.02);
            border-radius: 20px;
            border: 1px solid var(--neon-cyan);
        }

        .contact h2 {
            font-size: 3rem;
            color: var(--neon-cyan);
            text-shadow: var(--glow-cyan);
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--neon-purple);
            border-radius: 15px;
            color: var(--text-white);
            font-size: 1rem;
            font-family: inherit;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            box-shadow: var(--glow-purple);
        }

        footer {
            background: var(--darker-bg);
            border-top: 2px solid var(--neon-cyan);
            padding: 3rem 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: var(--neon-purple);
            text-shadow: var(--glow-purple);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: var(--text-gray);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--neon-cyan);
            text-shadow: var(--glow-cyan);
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--dark-bg);
            border: 2px solid var(--neon-green);
            border-radius: 15px;
            padding: 2rem;
            z-index: 10000;
            display: none;
            text-align: center;
        }

        .popup.show {
            display: block;
            animation: popupSlide 0.3s ease;
        }

        @keyframes popupSlide {
            from { transform: translate(-50%, -60%); opacity: 0; }
            to { transform: translate(-50%, -50%); opacity: 1; }
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--darker-bg);
            border-top: 2px solid var(--neon-orange);
            padding: 1rem;
            z-index: 9999;
            display: none;
        }

        .cookie-banner.show {
            display: block;
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .cookie-text {
            flex: 1;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-button {
            padding: 0.5rem 1rem;
            border: 2px solid var(--neon-orange);
            background: transparent;
            color: var(--neon-orange);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-button:hover {
            background: var(--neon-orange);
            color: var(--dark-bg);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 2rem;
                transition: 0.3s;
            }

            .nav-links.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            section {
                padding: 2rem 5%;
            }

            .about h2,
            .lyrics h2,
            .events h2,
            .gallery h2,
            .faq h2,
            .newsletter h2,
            .contact h2 {
                font-size: 2rem;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }

