* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-purple: #7A5AF8;
            --accent-pink: #FF6AD5;
            --dark-purple: #5B21B6;
            --light-gray: #F9FAFB;
            --dark-gray: #374151;
            --success-green: #10B981;
            --warning-orange: #F59E0B;
            --error-red: #EF4444;
            --white: #FFFFFF;
            --black: #000000;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark-gray);
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }

        .nav {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 16px;
        }

        .nav a:hover {
            color: var(--primary-purple);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--primary-purple);
            transition: 0.3s;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: white;
            padding: 24px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav a {
            display: block;
            padding: 16px 0;
            text-decoration: none;
            color: var(--dark-gray);
            border-bottom: 1px solid var(--light-gray);
        }

        main {
            margin-top: 80px;
        }

        .hero {
            min-height: 90vh;
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/21.jpg') center/cover;
            opacity: 0.1;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: clamp(48px, 8vw, 96px);
            font-weight: 900;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .hero p {
            font-size: 24px;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.5;
        }

        .cta-button {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 20px 48px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.2);
        }

        .section {
            padding: 96px 0;
        }

        .about {
            background: var(--light-gray);
        }

        .section-title {
            font-size: clamp(40px, 6vw, 64px);
            font-weight: 800;
            text-align: center;
            margin-bottom: 64px;
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 48px;
            margin-top: 64px;
        }

        .about-card {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(122, 90, 248, 0.1);
            transition: transform 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-8px);
        }

        .about-card h3 {
            font-size: 24px;
            color: var(--primary-purple);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .about-card p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        .lyrics {
            background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
            color: white;
            text-align: center;
        }

        .lyrics-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .lyrics-text {
            font-size: 24px;
            line-height: 1.8;
            font-style: italic;
            opacity: 0.9;
            margin: 48px 0;
        }

        .events {
            background: white;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-top: 64px;
        }

        .event-card {
            background: var(--light-gray);
            padding: 32px;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .event-card:hover {
            border-color: var(--primary-purple);
            transform: translateY(-4px);
        }

        .event-date {
            font-size: 14px;
            color: var(--primary-purple);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .event-title {
            font-size: 24px;
            font-weight: 700;
            margin: 8px 0 16px;
            color: var(--dark-gray);
        }

        .event-location {
            color: var(--dark-gray);
            opacity: 0.8;
            margin-bottom: 16px;
        }

        .event-button {
            background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .event-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(122, 90, 248, 0.3);
        }

        .gallery {
            background: var(--light-gray);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 64px;
        }

        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .faq {
            background: white;
        }

        .faq-item {
            background: var(--light-gray);
            margin-bottom: 16px;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 24px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--primary-purple);
            background: var(--light-gray);
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(122, 90, 248, 0.1);
        }

        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-answer.active {
            padding: 24px;
            max-height: 200px;
        }

        .newsletter {
            background: linear-gradient(135deg, var(--accent-pink), var(--primary-purple));
            color: white;
            text-align: center;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 48px auto 0;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .newsletter-input {
            flex: 1;
            padding: 16px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            min-width: 250px;
        }

        .newsletter-button {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .newsletter-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .contact {
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 64px;
            margin-top: 64px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-purple);
        }

        .form-group input,
        .form-group textarea {
            padding: 16px;
            border: 2px solid var(--light-gray);
            border-radius: 12px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-purple);
        }

        .contact-info {
            background: var(--light-gray);
            padding: 40px;
            border-radius: 24px;
        }

        .contact-info h3 {
            color: var(--primary-purple);
            margin-bottom: 24px;
            font-size: 24px;
        }

        .contact-item {
            margin-bottom: 24px;
        }

        .contact-item strong {
            color: var(--dark-gray);
            display: block;
            margin-bottom: 8px;
        }

        .amazon-link {
            background: linear-gradient(135deg, var(--warning-orange), #FF8C00);
            color: white;
            padding: 16px 32px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            margin-top: 24px;
        }

        .amazon-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
        }

        footer {
            background: var(--dark-gray);
            color: white;
            padding: 64px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h4 {
            color: var(--accent-pink);
            margin-bottom: 24px;
            font-size: 20px;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-pink);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 32px;
            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: var(--dark-gray);
            color: white;
            padding: 24px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            z-index: 1001;
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .cookie-buttons {
            display: flex;
            gap: 16px;
        }

        .cookie-accept,
        .cookie-decline {
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: var(--success-green);
            color: white;
        }

        .cookie-decline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1002;
        }

        .popup.active {
            display: flex;
        }

        .popup-content {
            background: white;
            padding: 48px;
            border-radius: 24px;
            text-align: center;
            max-width: 400px;
            animation: slideIn 0.3s ease;
        }

        .popup-close {
            background: var(--primary-purple);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            margin-top: 24px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 48px;
            }

            .hero p {
                font-size: 18px;
            }

            .section {
                padding: 64px 0;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input {
                min-width: auto;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }

