* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #00FFFF;
            --secondary-color: #FF006E;
            --accent-color: #9D00FF;
            --bg-dark: #0A0A0F;
            --bg-darker: #050508;
            --text-light: #FFFFFF;
            --text-muted: #B0B0B0;
            --gradient-1: linear-gradient(135deg, #00FFFF 0%, #FF006E 100%);
            --gradient-2: linear-gradient(45deg, #9D00FF 0%, #00FFFF 100%);
            --neon-glow: 0 0 20px currentColor;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid var(--primary-color);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-shadow: var(--neon-glow);
            letter-spacing: 2px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover {
            color: var(--primary-color);
            background: rgba(0, 255, 255, 0.1);
            box-shadow: var(--neon-glow);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/12.jpg') center/cover;
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
            to { text-shadow: 0 0 40px rgba(255, 255, 255, 1); }
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--bg-darker);
            font-weight: 500;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--bg-darker);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
            box-shadow: var(--neon-glow);
        }

        .cta-button:hover {
            background: var(--primary-color);
            color: var(--bg-darker);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
        }

        section {
            padding: 5rem 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about {
            background: var(--bg-darker);
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .about-card {
            background: rgba(0, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--primary-color);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
            transition: transform 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
        }

        .about-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .lyrics {
            padding: 5rem 0;
            background: var(--bg-dark);
        }

        .lyrics-container {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .lyrics-excerpt {
            background: rgba(157, 0, 255, 0.1);
            padding: 3rem;
            border-radius: 20px;
            border-left: 5px solid var(--accent-color);
            margin: 2rem 0;
            font-size: 1.2rem;
            font-style: italic;
            line-height: 2;
        }

        .events {
            background: var(--bg-darker);
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .event-card {
            background: rgba(255, 0, 110, 0.05);
            border: 1px solid var(--secondary-color);
            border-radius: 15px;
            padding: 2rem;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }


        .event-card:hover {
            transform: translateY(-5px);
        }

        .event-date {
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .gallery {
            padding: 5rem 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 1;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            border-color: var(--primary-color);
            box-shadow: var(--neon-glow);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .faq {
            background: var(--bg-darker);
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--accent-color);
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            background: rgba(157, 0, 255, 0.1);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(157, 0, 255, 0.2);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 1rem;
            max-height: 200px;
        }

        .newsletter {
            background: var(--gradient-2);
            text-align: center;
            color: var(--bg-darker);
        }

        .newsletter-form {
            max-width: 500px;
            margin: 2rem auto;
            display: flex;
            gap: 1rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            outline: none;
        }

        .newsletter-button {
            padding: 1rem 2rem;
            background: var(--bg-darker);
            color: var(--primary-color);
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .newsletter-button:hover {
            transform: scale(1.05);
        }

        .contact {
            background: var(--bg-darker);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            border: 1px solid var(--accent-color);
            border-radius: 10px;
            background: rgba(157, 0, 255, 0.05);
            color: var(--text-light);
            outline: none;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
        }

        footer {
            background: var(--bg-darker);
            padding: 3rem 0 1rem;
            text-align: center;
            border-top: 1px solid var(--primary-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .cookie-banner {
            position: fixed;
            bottom: -100px;
            left: 0;
            right: 0;
            background: var(--bg-darker);
            border-top: 2px solid var(--primary-color);
            padding: 1rem;
            text-align: center;
            z-index: 1001;
            transition: bottom 0.3s ease;
        }

        .cookie-banner.show {
            bottom: 0;
        }

        .cookie-buttons {
            margin-top: 1rem;
            gap: 1rem;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 0.5rem 1rem;
            border: 1px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-btn:hover,
        .cookie-btn.accept {
            background: var(--primary-color);
            color: var(--bg-darker);
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1002;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: var(--bg-darker);
            margin: 15% auto;
            padding: 2rem;
            border: 2px solid var(--primary-color);
            border-radius: 15px;
            width: 90%;
            max-width: 400px;
            text-align: center;
            animation: modalSlide 0.3s ease;
        }

        @keyframes modalSlide {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .close {
            color: var(--secondary-color);
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
        }

        .close:hover {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--bg-darker);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .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);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .cookie-buttons {
                flex-direction: column;
                align-items: center;
            }
            .event-card{
                padding: 1em;
            }
        }

        .glitch {
            animation: glitch 0.3s, blur 0.3s, hue 0.3s;
            animation-iteration-count: infinite;
            animation-direction: alternate-reverse;
        }

        @keyframes glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }

        @keyframes blur {
            0% { text-shadow: 0 0 0 var(--primary-color); }
            100% { text-shadow: 2px 0 0 var(--primary-color), -2px 0 0 var(--secondary-color); }
        }

        @keyframes hue {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(360deg); }
        }

