* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: linear-gradient(135deg, #ff6b9d, #c44569);
            --secondary: linear-gradient(135deg, #4834d4, #686de0);
            --accent: linear-gradient(135deg, #00d2d3, #54a0ff);
            --warm: linear-gradient(135deg, #ff9ff3, #f368e0);
            --dark: #1a1a2e;
            --darker: #16213e;
            --light: #eee2dc;
            --white: #ffffff;
            --text-light: #f5f3f0;
            --text-dark: #2c2c54;
            --glow: 0 0 30px rgba(255, 107, 157, 0.6);
        }
        
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 107, 157, 0.3);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            background: var(--primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: var(--glow);
        }
        
        .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;
            font-weight: 500;
        }
        
        .nav-links a:hover {
            background: var(--warm);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(255, 159, 243, 0.8);
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: linear-gradient(90deg, #ff6b9d, #c44569);
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .burger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .burger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }
        
        main {
            margin-top: 80px;
        }
        
        section {
            padding: 100px 0;
            position: relative;
        }
        
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(circle at 30% 70%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(72, 52, 212, 0.15) 0%, transparent 50%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/03.jpg') center/cover;
            opacity: 0.1;
            z-index: -1;
        }
        
        .hero-content h1 {
            font-size: 6rem;
            font-weight: bold;
            margin-bottom: 2rem;
            background: var(--primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 50px rgba(255, 107, 157, 0.5);
            animation: glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.5)); }
            to { filter: drop-shadow(0 0 40px rgba(255, 107, 157, 0.8)); }
        }
        
        .hero-content p {
            font-size: 1.8rem;
            margin-bottom: 3rem;
            max-width: 700px;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1.5rem 3rem;
            background: var(--warm);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(255, 159, 243, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 60px rgba(255, 159, 243, 0.6);
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .about {
            background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
        }
        
        .section-title {
            font-size: 4rem;
            text-align: center;
            margin-bottom: 4rem;
            background: var(--secondary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .about-text h3 {
            font-size: 2.5rem;
            background: var(--accent);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 2rem;
        }
        
        .about-text p {
            margin-bottom: 2rem;
            font-size: 1.2rem;
            line-height: 1.8;
        }
        
        .about-image {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 210, 211, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            filter: brightness(0.8) contrast(1.1) saturate(1.2);
        }
        
        .lyrics {
            padding: 100px 0;
            background: radial-gradient(circle at 70% 30%, rgba(0, 210, 211, 0.1) 0%, transparent 70%);
        }
        
        .lyrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .lyric-card {
            background: rgba(26, 26, 46, 0.7);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 107, 157, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .lyric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
        }
        
        .lyric-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 70px rgba(255, 107, 157, 0.3);
            border-color: rgba(255, 107, 157, 0.5);
        }
        
        .lyric-card blockquote {
            font-style: italic;
            font-size: 1.4rem;
            line-height: 2;
            color: var(--text-light);
            position: relative;
        }
        
        .lyric-card blockquote::before {
            content: '"';
            font-size: 4rem;
            color: rgba(255, 107, 157, 0.5);
            position: absolute;
            top: -20px;
            left: -10px;
        }
        
        .events {
            background: linear-gradient(135deg, rgba(22, 33, 62, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
        }
        
        .events-table {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(72, 52, 212, 0.3);
            box-shadow: 0 25px 60px rgba(72, 52, 212, 0.2);
        }
        
        .events-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .events-table th, .events-table td {
            padding: 2rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 107, 157, 0.1);
        }
        
        .events-table th {
            background: var(--secondary);
            color: var(--white);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .events-table td {
            color: var(--text-light);
            font-size: 1.1rem;
        }
        
        .events-table tr:hover {
            background: rgba(255, 107, 157, 0.05);
        }
        
        .gallery {
            padding: 100px 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(0, 210, 211, 0.2);
        }
        
        .gallery-item:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 25px 60px rgba(0, 210, 211, 0.4);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.8) contrast(1.1) saturate(1.3);
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 107, 157, 0.3), rgba(72, 52, 212, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        .faq {
            background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
        }
        
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 107, 157, 0.2);
            border-radius: 15px;
            overflow: hidden;
            background: rgba(26, 26, 46, 0.6);
            backdrop-filter: blur(10px);
        }
        
        .faq-question {
            background: rgba(26, 26, 46, 0.8);
            padding: 2rem;
            cursor: pointer;
            font-size: 1.3rem;
            font-weight: bold;
            background: var(--warm);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            color: #ff6b9d;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            transform: translateY(-50%) rotate(45deg);
        }
        
        .faq-question:hover {
            background: rgba(255, 159, 243, 0.1);
        }
        
        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: rgba(22, 33, 62, 0.8);
        }
        
        .faq-answer.active {
            padding: 2rem;
            max-height: 300px;
        }
        
        .newsletter {
            padding: 100px 0;
            text-align: center;
            background: radial-gradient(circle at 50% 50%, rgba(255, 159, 243, 0.1) 0%, transparent 70%);
        }
        
        .newsletter-form {
            max-width: 600px;
            margin: 3rem auto;
            display: flex;
            gap: 1rem;
            background: rgba(26, 26, 46, 0.8);
            padding: 1rem;
            border-radius: 50px;
            border: 1px solid rgba(255, 107, 157, 0.3);
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 1.5rem 2rem;
            background: transparent;
            border: none;
            border-radius: 50px;
            color: var(--text-light);
            font-size: 1.1rem;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(245, 243, 240, 0.6);
        }
        
        .newsletter-form input:focus {
            outline: none;
        }
        
        .newsletter-form button {
            padding: 1.5rem 3rem;
            background: var(--accent);
            color: var(--white);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(0, 210, 211, 0.4);
        }
        
        .contact {
            background: linear-gradient(135deg, rgba(22, 33, 62, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-form input, .contact-form textarea {
            padding: 1.5rem;
            background: rgba(26, 26, 46, 0.8);
            border: 1px solid rgba(255, 107, 157, 0.3);
            border-radius: 15px;
            color: var(--text-light);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .contact-form input:focus, .contact-form textarea:focus {
            outline: none;
            border-color: rgba(255, 107, 157, 0.6);
            box-shadow: 0 0 20px rgba(255, 107, 157, 0.2);
        }
        
        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .contact-info h3 {
            background: var(--accent);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        
        .contact-info p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .amazon-link {
            display: inline-block;
            margin-top: 2rem;
            padding: 1.5rem 3rem;
            background: linear-gradient(135deg, #ff9500, #ff6b00);
            color: white;
            text-decoration: none;
            border-radius: 15px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(255, 149, 0, 0.3);
        }
        
        .amazon-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 25px 60px rgba(255, 149, 0, 0.5);
        }
        
        footer {
            background: var(--darker);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 107, 157, 0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-section h3 {
            background: var(--warm);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        .footer-section a {
            color: var(--text-light);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
            opacity: 0.8;
        }
        
        .footer-section a:hover {
            background: var(--accent);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 1;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 107, 157, 0.1);
            color: rgba(245, 243, 240, 0.6);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 46, 0.98);
            backdrop-filter: blur(15px);
            padding: 2rem;
            border-top: 1px solid rgba(255, 107, 157, 0.3);
            z-index: 1001;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        
        .cookie-banner.hidden {
            display: none;
        }
        
        .cookie-text {
            flex: 1;
            font-size: 1rem;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-buttons button {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .accept-btn {
            background: var(--warm);
            color: var(--white);
        }
        
        .decline-btn {
            background: transparent;
            color: var(--text-light);
            border: 1px solid rgba(255, 107, 157, 0.3);
        }
        
        .accept-btn:hover, .decline-btn:hover {
            transform: translateY(-2px);
        }
        
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(15px);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 107, 157, 0.3);
            z-index: 1002;
            display: none;
            text-align: center;
            box-shadow: 0 25px 60px rgba(255, 107, 157, 0.3);
        }
        
        .popup.show {
            display: block;
        }
        
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1001;
            display: none;
        }
        
        .popup-overlay.show {
            display: block;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(26, 26, 46, 0.98);
                backdrop-filter: blur(15px);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 3rem;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .burger {
                display: flex;
            }
            
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .about-grid, .contact-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .newsletter-form {
                flex-direction: column;
                border-radius: 20px;
            }
            
            .newsletter-form input, .newsletter-form button {
                border-radius: 15px;
            }
            
            .cookie-banner {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

