* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --neon-pink: #FF10F0;
            --electric-purple: #8A2BE2;
            --cyber-teal: #00CED1;
            --sunset-orange: #FF6B35;
            --pastel-blue: #87CEEB;
            --deep-navy: #191970;
            --soft-white: #F8F8FF;
            --dark-purple: #2E0854;
            --bright-magenta: #FF1493;
            --grid-gray: #4A4A4A;
        }

        body {
            font-family: 'Courier New', 'Monaco', monospace;
            line-height: 1.6;
            color: var(--soft-white);
            background: linear-gradient(135deg, var(--deep-navy), var(--dark-purple));
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(25, 25, 112, 0.85);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 3px solid var(--neon-pink);
            box-shadow: 0 0 30px rgba(255, 16, 240, 0.3);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 36px;
            font-weight: 900;
            background: linear-gradient(45deg, var(--neon-pink), var(--cyber-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 20px rgba(255, 16, 240, 0.5);
        }

        .nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav a {
            text-decoration: none;
            color: var(--soft-white);
            font-weight: 600;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            padding: 8px 16px;
        }

        .nav a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, var(--neon-pink), var(--cyber-teal));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .nav a:hover::before {
            opacity: 0.2;
        }

        .nav a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 15px var(--neon-pink);
            transform: translateY(-2px);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .burger span {
            width: 30px;
            height: 4px;
            background: linear-gradient(45deg, var(--neon-pink), var(--cyber-teal));
            transition: 0.4s;
            border-radius: 2px;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 90px;
            left: 0;
            right: 0;
            background: var(--deep-navy);
            padding: 30px;
            border-bottom: 3px solid var(--bright-magenta);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav a {
            display: block;
            padding: 20px 0;
            text-decoration: none;
            color: var(--soft-white);
            border-bottom: 1px solid var(--grid-gray);
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover {
            color: var(--neon-pink);
        }

        main {
            margin-top: 90px;
        }

        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--deep-navy), var(--dark-purple), var(--electric-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/05.jpg') center/cover;
            opacity: 0.15;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 3px,
                rgba(255, 16, 240, 0.1) 3px,
                rgba(255, 16, 240, 0.1) 6px
            );
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1000px;
            animation: fadeInUp 2s ease;
        }

        .hero h1 {
            font-size: clamp(70px, 12vw, 140px);
            font-weight: 900;
            margin-bottom: 40px;
            line-height: 0.9;
            background: linear-gradient(45deg, var(--neon-pink), var(--cyber-teal), var(--sunset-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 5px;
            text-shadow: 0 0 40px rgba(255, 16, 240, 0.6);
        }

        .hero p {
            font-size: 32px;
            margin-bottom: 50px;
            color: var(--pastel-blue);
            text-shadow: 0 0 25px rgba(135, 206, 235, 0.4);
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, var(--neon-pink), var(--cyber-teal));
            color: var(--deep-navy);
            padding: 25px 60px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 22px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.4s ease;
            border: 3px solid var(--neon-pink);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 50px rgba(255, 16, 240, 0.5);
            text-shadow: 0 0 15px var(--soft-white);
        }

        .section {
            padding: 140px 0;
            position: relative;
        }

        .about {
            background: linear-gradient(180deg, var(--dark-purple), var(--deep-navy));
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 80px,
                rgba(0, 206, 209, 0.05) 80px,
                rgba(0, 206, 209, 0.05) 82px
            );
        }

        .section-title {
            font-size: clamp(32px, 9vw, 90px);
            font-weight: 900;
            text-align: center;
            margin-bottom: 90px;
            background: linear-gradient(45deg, var(--cyber-teal), var(--neon-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 4px;
            position: relative;
            z-index: 2;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 50px;
            margin-top: 90px;
            position: relative;
            z-index: 2;
        }

        .about-card {
            background: rgba(74, 74, 74, 0.3);
            padding: 50px;
            border-radius: 20px;
            border: 2px solid var(--cyber-teal);
            position: relative;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 16, 240, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 18px;
        }

        .about-card:hover::before {
            opacity: 1;
        }

        .about-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(255, 16, 240, 0.3);
            border-color: var(--neon-pink);
        }

        .about-card h3 {
            font-size: 32px;
            color: var(--bright-magenta);
            margin-bottom: 25px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-card p {
            font-size: 20px;
            line-height: 1.8;
            color: var(--soft-white);
        }

        .lyrics {
            background: linear-gradient(135deg, var(--electric-purple), var(--deep-navy));
            text-align: center;
            position: relative;
        }

        .lyrics::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 60px,
                rgba(135, 206, 235, 0.08) 60px,
                rgba(135, 206, 235, 0.08) 62px
            );
        }

        .lyrics-content {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .lyrics-text {
            font-size: 36px;
            line-height: 1.7;
            font-style: italic;
            margin: 70px 0;
            color: var(--cyber-teal);
            text-shadow: 0 0 25px rgba(0, 206, 209, 0.6);
            border: 3px solid var(--bright-magenta);
            border-radius: 25px;
            padding: 60px;
            background: rgba(25, 25, 112, 0.4);
            backdrop-filter: blur(15px);
        }

        .events {
            background: var(--deep-navy);
            position: relative;
        }

        .events::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/21.jpg') center/cover;
            opacity: 0.1;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 45px;
            margin-top: 90px;
            position: relative;
            z-index: 2;
        }

        .event-card {
            background: var(--grid-gray);
            padding: 45px;
            border-radius: 25px;
            border: 3px solid var(--sunset-orange);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.15), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .event-card:hover::before {
            opacity: 1;
            animation: shimmer 2s linear infinite;
        }

        .event-card:hover {
            border-color: var(--bright-magenta);
            box-shadow: 0 0 40px rgba(255, 20, 147, 0.4);
            transform: translateY(-8px);
        }

        .event-date {
            font-size: 18px;
            color: var(--sunset-orange);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 10px;
        }

        .event-title {
            font-size: 30px;
            font-weight: 800;
            margin: 20px 0;
            color: var(--cyber-teal);
            text-transform: uppercase;
        }

        .event-location {
            color: var(--soft-white);
            margin-bottom: 30px;
            font-size: 20px;
        }

        .event-button {
            background: linear-gradient(45deg, var(--sunset-orange), var(--cyber-teal));
            color: var(--deep-navy);
            padding: 18px 36px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .event-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.5);
        }

        .gallery {
            background: var(--dark-purple);
            position: relative;
        }

        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 100px,
                rgba(255, 16, 240, 0.05) 100px,
                rgba(255, 16, 240, 0.05) 102px
            );
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 35px;
            margin-top: 90px;
            position: relative;
            z-index: 2;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: transform 0.4s ease;
            border-radius: 20px;
            border: 3px solid var(--cyber-teal);
            overflow: hidden;
        }

        .gallery-item:hover {
            transform: scale(1.08) rotate(1deg);
            border-color: var(--bright-magenta);
            box-shadow: 0 0 50px rgba(0, 206, 209, 0.4);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: contrast(1.3) saturate(1.4) hue-rotate(10deg);
            transition: filter 0.4s ease;
        }

        .gallery-item:hover img {
            filter: contrast(1.5) saturate(1.6) hue-rotate(20deg);
        }

        .faq {
            background: var(--deep-navy);
        }

        .faq-item {
            background: var(--grid-gray);
            margin-bottom: 30px;
            border-radius: 20px;
            border: 3px solid var(--sunset-orange);
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .faq-question {
            padding: 40px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--cyber-teal);
            transition: all 0.4s ease;
            text-transform: uppercase;
            font-size: 18px;
        }

        .faq-question:hover {
            background: rgba(0, 206, 209, 0.15);
            text-shadow: 0 0 15px var(--cyber-teal);
        }

        .faq-answer {
            padding: 0 40px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: rgba(46, 8, 84, 0.6);
        }

        .faq-answer.active {
            padding: 40px;
            max-height: 350px;
        }

        .faq-answer p {
            line-height: 1.8;
            color: var(--soft-white);
            font-size: 18px;
        }

        .toggle-icon {
            font-size: 36px;
            font-weight: 300;
            transition: transform 0.4s ease;
            color: var(--bright-magenta);
        }

        .faq-question.active .toggle-icon {
            transform: rotate(45deg);
        }

        .newsletter {
            background: linear-gradient(135deg, var(--bright-magenta), var(--cyber-teal));
            text-align: center;
            position: relative;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 5px,
                rgba(0, 0, 0, 0.1) 5px,
                rgba(0, 0, 0, 0.1) 10px
            );
        }

        .newsletter-content {
            position: relative;
            z-index: 2;
        }

        .newsletter-form {
            max-width: 650px;
            margin: 70px auto 0;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .newsletter-input {
            flex: 1;
            padding: 25px;
            border: 3px solid var(--deep-navy);
            border-radius: 25px;
            font-size: 20px;
            min-width: 320px;
            background: var(--soft-white);
            color: var(--deep-navy);
            font-weight: 600;
        }

        .newsletter-button {
            background: var(--deep-navy);
            color: var(--soft-white);
            padding: 25px 45px;
            border: 3px solid var(--soft-white);
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .newsletter-button:hover {
            background: var(--soft-white);
            color: var(--deep-navy);
            box-shadow: 0 0 25px var(--soft-white);
            transform: translateY(-3px);
        }

        .contact {
            background: var(--dark-purple);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
            gap: 90px;
            margin-top: 90px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 15px;
            font-weight: 700;
            color: var(--bright-magenta);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .form-group input,
        .form-group textarea {
            padding: 25px;
            border: 3px solid var(--cyber-teal);
            border-radius: 15px;
            background: var(--grid-gray);
            color: var(--soft-white);
            font-size: 18px;
            transition: all 0.4s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--bright-magenta);
            box-shadow: 0 0 25px rgba(255, 20, 147, 0.4);
            background: rgba(74, 74, 74, 0.6);
        }

        .contact-info {
            background: var(--grid-gray);
            padding: 50px;
            border-radius: 25px;
            border: 3px solid var(--sunset-orange);
            position: relative;
        }

        .contact-info h3 {
            color: var(--sunset-orange);
            margin-bottom: 35px;
            font-size: 36px;
            text-transform: uppercase;
        }

        .contact-item {
            margin-bottom: 35px;
            padding: 30px;
            background: rgba(46, 8, 84, 0.5);
            border-radius: 15px;
            border-left: 5px solid var(--cyber-teal);
        }

        .contact-item strong {
            color: var(--bright-magenta);
            display: block;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .amazon-link {
            background: linear-gradient(45deg, var(--sunset-orange), var(--bright-magenta));
            color: var(--soft-white);
            padding: 25px 45px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            transition: all 0.4s ease;
            margin-top: 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 25px;
            border: 3px solid var(--sunset-orange);
        }

        .amazon-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(255, 107, 53, 0.5);
            text-shadow: 0 0 15px var(--soft-white);
        }

        footer {
            background: linear-gradient(135deg, var(--deep-navy), var(--dark-purple));
            color: var(--soft-white);
            padding: 90px 0 50px;
            border-top: 3px solid var(--cyber-teal);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-section h4 {
            color: var(--bright-magenta);
            margin-bottom: 30px;
            font-size: 26px;
            text-transform: uppercase;
        }

        .footer-section a {
            color: var(--soft-white);
            text-decoration: none;
            display: block;
            margin-bottom: 18px;
            transition: color 0.3s ease;
            text-transform: uppercase;
        }

        .footer-section a:hover {
            color: var(--cyber-teal);
            text-shadow: 0 0 15px var(--cyber-teal);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid var(--grid-gray);
            color: var(--soft-white);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--deep-navy);
            color: var(--soft-white);
            padding: 30px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
            z-index: 1001;
            border-top: 3px solid var(--cyber-teal);
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .cookie-buttons {
            display: flex;
            gap: 20px;
        }

        .cookie-accept,
        .cookie-decline {
            padding: 15px 30px;
            border: 3px solid var(--cyber-teal);
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
        }

        .cookie-accept {
            background: var(--sunset-orange);
            color: var(--deep-navy);
        }

        .cookie-decline {
            background: transparent;
            color: var(--soft-white);
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1002;
        }

        .popup.active {
            display: flex;
        }

        .popup-content {
            background: var(--grid-gray);
            padding: 70px;
            border-radius: 25px;
            border: 3px solid var(--bright-magenta);
            text-align: center;
            max-width: 550px;
            animation: fadeInUp 0.6s ease;
        }

        .popup-close {
            background: var(--bright-magenta);
            color: var(--soft-white);
            border: none;
            padding: 20px 40px;
            border-radius: 25px;
            cursor: pointer;
            margin-top: 40px;
            font-weight: 700;
            text-transform: uppercase;
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 60px;
            }

            .hero p {
                font-size: 24px;
            }

            .section {
                padding: 100px 0;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input {
                min-width: auto;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .events-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }

            .lyrics-text{
                font-size: 18px;
            }
        }

