* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0B0C2A 0%, #1a1a3a 50%, #2a2a5a 100%);
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(90deg, rgba(11,12,42,0.95) 0%, rgba(138,43,226,0.95) 100%);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00FFFF, #FF1493);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-menu a:hover {
            color: #00FFFF;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 3px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #00FFFF;
            transition: 0.3s;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, #0B0C2A 0%, #8A2BE2 100%);
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/02.jpg') center/cover;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00FFFF, #FF1493, #8A2BE2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px #00FFFF); }
            to { filter: drop-shadow(0 0 30px #FF1493); }
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #FF1493, #8A2BE2);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 20, 147, 0.5);
        }

        .section {
            padding: 6rem 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .section h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #00FFFF, #8A2BE2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h3 {
            font-size: 1.8rem;
            color: #00FFFF;
            margin-bottom: 1rem;
        }

        .about-image {
            background: url('../img/11.jpg') center/cover;
            height: 400px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
        }

        .lyrics-container {
            background: linear-gradient(135deg, rgba(138,43,226,0.1), rgba(255,20,147,0.1));
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            border: 2px solid rgba(0, 255, 255, 0.3);
        }

        .lyrics-text {
            font-size: 1.5rem;
            font-style: italic;
            line-height: 2;
            color: #00FFFF;
            margin-bottom: 2rem;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .event-card {
            background: linear-gradient(135deg, rgba(11,12,42,0.8), rgba(138,43,226,0.8));
            border-radius: 15px;
            padding: 2rem;
            border: 2px solid rgba(0, 255, 255, 0.3);
            transition: transform 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-10px);
        }

        .event-date {
            color: #FF1493;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .faq-item {
            background: rgba(138,43,226,0.1);
            border-radius: 10px;
            margin-bottom: 1rem;
            border: 1px solid rgba(0, 255, 255, 0.3);
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer.active {
            max-height: 200px;
            padding: 0 1.5rem 1.5rem;
        }

        .newsletter-form {
            background: linear-gradient(135deg, rgba(255,20,147,0.1), rgba(138,43,226,0.1));
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(0, 255, 255, 0.3);
            background: rgba(11,12,42,0.8);
            color: white;
            border-radius: 10px;
            font-size: 1rem;
        }

        .form-group input:focus {
            outline: none;
            border-color: #00FFFF;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form {
            background: rgba(138,43,226,0.1);
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid rgba(0, 255, 255, 0.3);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer {
            background: linear-gradient(135deg, #0B0C2A, #1a1a3a);
            padding: 3rem 0 1rem;
            margin-top: 4rem;
            border-top: 2px solid rgba(0, 255, 255, 0.3);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: #00FFFF;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #FF1493;
        }

        .cookie-banner {
            position: fixed;
            bottom: -200px;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, #8A2BE2, #FF1493);
            padding: 1rem;
            text-align: center;
            transition: bottom 0.5s ease;
            z-index: 1001;
        }

        .cookie-banner.show {
            bottom: 0;
        }

        .cookie-banner button {
            background: #00FFFF;
            color: #0B0C2A;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin-left: 1rem;
            cursor: pointer;
            font-weight: bold;
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, #8A2BE2, #FF1493);
            padding: 2rem;
            border-radius: 15px;
            z-index: 1002;
            display: none;
            text-align: center;
        }

        .popup.show {
            display: block;
        }

        .popup button {
            background: #00FFFF;
            color: #0B0C2A;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            margin-top: 1rem;
            cursor: pointer;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: linear-gradient(135deg, #0B0C2A, #8A2BE2);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .burger.active span:nth-child(2) {
                opacity: 0;
            }

            .burger.active span:nth-child(1) {
                transform: translateY(6px) rotate(45deg);
            }

            .burger.active span:nth-child(3) {
                transform: translateY(-6px) rotate(-45deg);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .section h2 {
                font-size: 2rem;
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

