* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #374151;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(122, 90, 248, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: white;
            text-decoration: none;
            background: linear-gradient(135deg, #FFFFFF, #FF6AD5);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
        }
        
        nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #7A5AF8 0%, #FF6AD5 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/01.jpg') center/cover;
            opacity: 0.1;
            animation: parallax 20s infinite linear;
        }
        
        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero h1 {
            font-size: clamp(48px, 8vw, 120px);
            font-weight: 900;
            margin-bottom: 24px;
            line-height: 1.1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        
        .hero p {
            font-size: clamp(18px, 3vw, 24px);
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #FF6AD5, #FFFFFF);
            color: #7A5AF8;
            padding: 20px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 106, 213, 0.4);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 106, 213, 0.6);
        }
        
        .section {
            padding: 80px 0;
        }
        
        .about {
            background: linear-gradient(45deg, #F9FAFB, #FFFFFF);
        }
        
        .section-title {
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .about-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(122, 90, 248, 0.1);
            transition: all 0.3s ease;
        }
        
        .about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(122, 90, 248, 0.2);
        }
        
        .about-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #7A5AF8;
        }
        
        .lyrics {
            background: linear-gradient(135deg, #7A5AF8, #9333EA);
            color: white;
        }
        
        .lyrics-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .lyrics-text {
            font-size: 24px;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        .events {
            background: #F9FAFB;
        }
        
        .events-grid {
            display: grid;
            gap: 30px;
        }
        
        .event-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }
        
        .event-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(122, 90, 248, 0.2);
        }
        
        .event-date {
            text-align: center;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
            padding: 15px;
            border-radius: 10px;
            min-width: 80px;
        }
        
        .gallery {
            background: white;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .faq {
            background: linear-gradient(45deg, #F9FAFB, #E5E7EB);
        }
        
        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .faq-question {
            padding: 25px;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #374151;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 25px;
            max-height: 200px;
        }
        
        .newsletter {
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            min-width: 250px;
        }
        
        .newsletter-form button {
            padding: 15px 30px;
            background: white;
            color: #7A5AF8;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(255,255,255,0.3);
        }
        
        .contact {
            background: #F9FAFB;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #7A5AF8;
            box-shadow: 0 0 0 3px rgba(122, 90, 248, 0.1);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .amazon-link {
            display: inline-block;
            background: linear-gradient(135deg, #FF6AD5, #7A5AF8);
            color: white;
            padding: 20px 30px;
            text-decoration: none;
            border-radius: 15px;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(122, 90, 248, 0.3);
        }
        
        .amazon-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(122, 90, 248, 0.4);
        }
        
        footer {
            background: linear-gradient(135deg, #374151, #1F2937);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #FF6AD5;
        }
        
        .footer-section a {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #FF6AD5;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(55, 65, 81, 0.95);
            color: white;
            padding: 20px;
            border-radius: 15px;
            display: none;
            z-index: 1001;
        }
        
        .cookie-banner.show {
            display: block;
            animation: slideUp 0.5s ease-out;
        }
        
        .cookie-actions {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background: #10B981;
            color: white;
        }
        
        .cookie-decline {
            background: #EF4444;
            color: white;
        }
        
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            z-index: 1002;
            display: none;
            text-align: center;
        }
        
        .popup.show {
            display: block;
            animation: popupAppear 0.3s ease-out;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1001;
            display: none;
        }
        
        .overlay.show {
            display: block;
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 0px;
                left: 0;
                right: 0;
                background: #7A5AF8;
                flex-direction: column;
                padding: 20px;
                transform: translateY(-100%);
                transition: transform 0.3s ease;
            }
            
            nav ul.active {
                transform: translateY(0);
                top: 75px;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input {
                min-width: auto;
            }

            .event-card{
                padding: 16px;
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes parallax {
            0% { transform: translateX(-100px); }
            100% { transform: translateX(100px); }
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes popupAppear {
            from {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

