* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: linear-gradient(135deg, #0a0a1f 0%, #1a0d2e 25%, #2d1b69 50%, #0f0f23 75%, #000000 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 31, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 255, 157, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #00ff9d;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #00ff9d;
            background: rgba(0, 255, 157, 0.1);
            transform: translateY(-2px);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #00ff9d;
            margin: 3px 0;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: linear-gradient(45deg, rgba(45, 27, 105, 0.4), rgba(10, 10, 31, 0.8));
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../img/05.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #00ff9d, #6c5ce7, #00ff9d);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.4;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #6c5ce7, #00ff9d);
            color: #ffffff;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 255, 157, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 255, 157, 0.5);
        }

        .section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 60px;
            color: #00ff9d;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about {
            background: linear-gradient(135deg, rgba(26, 13, 46, 0.8), rgba(15, 15, 35, 0.9));
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .lyrics {
            background: linear-gradient(45deg, rgba(45, 27, 105, 0.6), rgba(10, 10, 31, 0.8));
        }

        .lyrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .lyric-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 157, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .lyric-card:hover {
            transform: translateY(-5px);
            border-color: #00ff9d;
            box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
        }

        .lyric-card h3 {
            color: #00ff9d;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .events {
            background: linear-gradient(135deg, rgba(15, 15, 35, 0.9), rgba(26, 13, 46, 0.8));
        }

        .events-table {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 157, 0.2);
        }

        .event-row {
            display: grid;
            grid-template-columns: 150px 1fr 1fr 150px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            align-items: center;
        }

        .event-row:last-child {
            border-bottom: none;
        }

        .event-date {
            color: #00ff9d;
            font-weight: 700;
        }

        .gallery {
            background: linear-gradient(45deg, rgba(26, 13, 46, 0.8), rgba(45, 27, 105, 0.6));
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .faq {
            background: linear-gradient(135deg, rgba(10, 10, 31, 0.8), rgba(15, 15, 35, 0.9));
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(0, 255, 157, 0.1);
        }

        .faq-question {
            padding: 30px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(0, 255, 157, 0.1);
        }

        .faq-answer {
            padding: 0 30px 30px;
            display: none;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .newsletter {
            background: linear-gradient(45deg, rgba(45, 27, 105, 0.6), rgba(26, 13, 46, 0.8));
            text-align: center;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 157, 0.2);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form button {
            background: linear-gradient(45deg, #6c5ce7, #00ff9d);
            color: #ffffff;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact {
            background: linear-gradient(135deg, rgba(15, 15, 35, 0.9), rgba(10, 10, 31, 0.8));
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 15px 20px;
            border: none;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 157, 0.2);
        }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .contact-form button {
            background: linear-gradient(45deg, #6c5ce7, #00ff9d);
            color: #ffffff;
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .amazon-link {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: #ffffff;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 700;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .amazon-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(247, 147, 30, 0.4);
        }

        footer {
            background: linear-gradient(135deg, rgba(10, 10, 31, 0.95), rgba(0, 0, 0, 0.9));
            padding: 60px 0 30px;
            border-top: 1px solid rgba(0, 255, 157, 0.2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #00ff9d;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #00ff9d;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 31, 0.95);
            padding: 20px;
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0, 255, 157, 0.2);
            z-index: 1001;
            display: none;
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .cookie-text {
            flex: 1;
            color: rgba(255, 255, 255, 0.9);
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
        }

        .cookie-button {
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: #00ff9d;
            color: #000;
        }

        .cookie-decline {
            background: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            backdrop-filter: blur(10px);
        }

        .modal-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, rgba(26, 13, 46, 0.95), rgba(15, 15, 35, 0.95));
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 157, 0.3);
            text-align: center;
            max-width: 400px;
            width: 90%;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 31, 0.95);
                flex-direction: column;
                padding: 20px;
                gap: 10px;
            }

            .nav-menu.active {
                display: flex;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .section-title{
                font-size: 2em;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .event-row {
                grid-template-columns: 1fr;
                gap: 10px;
                text-align: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }

