* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #00FFFF;
            --secondary-color: #FF006E;
            --accent-color: #9D00FF;
            --bg-dark: #0A0A0F;
            --bg-darker: #050508;
            --text-light: #FFFFFF;
            --text-muted: #B0B0B0;
            --gradient-1: linear-gradient(135deg, #00FFFF 0%, #FF006E 100%);
            --gradient-2: linear-gradient(45deg, #9D00FF 0%, #00FFFF 100%);
            --neon-glow: 0 0 20px currentColor;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid var(--primary-color);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-shadow: var(--neon-glow);
            letter-spacing: 2px;
        }

        .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;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }

        .nav-links a:hover {
            color: var(--primary-color);
            background: rgba(0, 255, 255, 0.1);
            box-shadow: var(--neon-glow);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 4rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero-section {
            text-align: center;
            padding: 4rem 0;
            background: var(--gradient-1);
            margin-bottom: 4rem;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--bg-darker);
            text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .hero-section p {
            font-size: 1.3rem;
            color: var(--bg-darker);
            max-width: 600px;
            margin: 0 auto;
        }

        .events-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .event-card {
            background: rgba(0, 255, 255, 0.05);
            border: 2px solid var(--primary-color);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .event-card:hover::before {
            left: 100%;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
        }

        .event-header {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 2rem;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .event-date {
            background: var(--secondary-color);
            color: var(--text-light);
            padding: 1rem;
            border-radius: 15px;
            text-align: center;
            min-width: 120px;
        }

        .event-date .day {
            font-size: 2rem;
            font-weight: bold;
            display: block;
        }

        .event-date .month {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .event-info h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .event-location {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .event-status {
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: bold;
            text-align: center;
            min-width: 100px;
        }

        .status-available {
            background: rgba(0, 255, 0, 0.2);
            color: #00FF00;
            border: 1px solid #00FF00;
        }

        .status-limited {
            background: rgba(255, 165, 0, 0.2);
            color: #FFA500;
            border: 1px solid #FFA500;
        }

        .status-soldout {
            background: rgba(255, 0, 0, 0.2);
            color: #FF4444;
            border: 1px solid #FF4444;
        }

        .event-description {
            margin: 1.5rem 0;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .event-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .detail-item {
            background: rgba(157, 0, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid var(--accent-color);
        }

        .detail-label {
            color: var(--accent-color);
            font-weight: bold;
            margin-bottom: 0.5rem;
            display: block;
        }

        .ticket-section {
            background: var(--gradient-2);
            padding: 3rem 0;
            text-align: center;
            color: var(--bg-darker);
            margin: 4rem 0;
        }

        .ticket-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 2rem auto;
        }

        .ticket-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .ticket-card:hover {
            transform: translateY(-10px);
        }

        .ticket-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--bg-darker);
        }

        .ticket-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .ticket-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .ticket-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .ticket-button {
            background: var(--bg-darker);
            color: var(--primary-color);
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .ticket-button:hover {
            background: var(--primary-color);
            color: var(--bg-darker);
        }

        .calendar-section {
            background: var(--bg-darker);
            padding: 4rem 0;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background: var(--primary-color);
            border-radius: 10px;
            overflow: hidden;
            margin-top: 2rem;
        }

        .calendar-header {
            background: var(--accent-color);
            padding: 1rem;
            text-align: center;
            font-weight: bold;
            color: var(--text-light);
        }

        .calendar-day {
            background: var(--bg-dark);
            padding: 1rem;
            text-align: center;
            min-height: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: background 0.3s ease;
            cursor: pointer;
        }

        .calendar-day:hover {
            background: rgba(0, 255, 255, 0.1);
        }

        .calendar-day.has-event {
            background: rgba(255, 0, 110, 0.2);
            color: var(--secondary-color);
            font-weight: bold;
        }

        .calendar-day.has-event:hover {
            background: rgba(255, 0, 110, 0.3);
        }

        footer {
            background: var(--bg-darker);
            padding: 3rem 0 1rem;
            text-align: center;
            border-top: 1px solid var(--primary-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--bg-darker);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .burger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .burger.active span:nth-child(2) {
                opacity: 0;
            }

            .burger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .hero-section h1 {
                font-size: 2.5rem;
            }

            .event-header {
                grid-template-columns: 1fr;
                gap: 1rem;
                text-align: center;
            }

            .event-details {
                grid-template-columns: 1fr;
            }

            .calendar-grid {
                font-size: 0.9rem;
            }

            .calendar-day {
                min-height: 60px;
                padding: 0.5rem;
            }
        }

        .glitch {
            animation: glitch 0.3s, blur 0.3s, hue 0.3s;
            animation-iteration-count: infinite;
            animation-direction: alternate-reverse;
        }

        @keyframes glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }

        @keyframes blur {
            0% { text-shadow: 0 0 0 var(--primary-color); }
            100% { text-shadow: 2px 0 0 var(--primary-color), -2px 0 0 var(--secondary-color); }
        }

        @keyframes hue {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(360deg); }
        }

