* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --dark-bg: #0a0a0a;
            --card-bg: #1a1a2e;
            --text-primary: #ffffff;
            --text-secondary: #b8b8b8;
            --neon-purple: #9d4edd;
            --neon-pink: #ff006e;
            --neon-blue: #00f5ff;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(157, 78, 221, 0.3);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--neon-purple);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--primary-gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            margin: 3px 0;
            transition: 0.3s;
        }

        main {
            margin-top: 120px;
            padding: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .event-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(157, 78, 221, 0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(157, 78, 221, 0.3);
            border-color: var(--neon-purple);
        }

        .event-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            position: relative;
        }

        .event-status {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .status-available {
            background: linear-gradient(45deg, #00f2fe, #4facfe);
            color: white;
        }

        .status-soldout {
            background: linear-gradient(45deg, #ff006e, #f5576c);
            color: white;
        }

        .status-soon {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
        }

        .event-content {
            padding: 2rem;
        }

        .event-date {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .date-box {
            background: var(--primary-gradient);
            color: white;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            min-width: 80px;
        }

        .date-day {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .date-month {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .event-details h3 {
            color: var(--neon-purple);
            margin-bottom: 0.5rem;
        }

        .event-venue {
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .event-description {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .ticket-btn {
            display: inline-block;
            background: var(--secondary-gradient);
            color: white;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .ticket-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 110, 0.4);
        }

        .ticket-btn:disabled {
            background: #666;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .calendar-section {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(157, 78, 221, 0.3);
            margin-bottom: 3rem;
        }

        .calendar-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .calendar {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background: rgba(157, 78, 221, 0.3);
            border-radius: 10px;
            overflow: hidden;
        }

        .calendar-header {
            background: var(--neon-purple);
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: bold;
        }

        .calendar-day {
            background: var(--dark-bg);
            padding: 1rem;
            text-align: center;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .calendar-day:hover {
            background: rgba(157, 78, 221, 0.1);
        }

        .calendar-day.has-event {
            background: rgba(157, 78, 221, 0.2);
            border: 2px solid var(--neon-purple);
        }

        .calendar-day.has-event::after {
            content: '♪';
            position: absolute;
            bottom: 5px;
            right: 5px;
            color: var(--neon-purple);
            font-size: 0.8rem;
        }

        .past-events {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(157, 78, 221, 0.3);
        }

        .past-events h3 {
            color: var(--neon-purple);
            margin-bottom: 2rem;
            text-align: center;
        }

        .past-event {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-bottom: 1px solid rgba(157, 78, 221, 0.2);
            align-items: center;
        }

        .past-event:last-child {
            border-bottom: none;
        }

        .past-event img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
        }

        .past-event-details {
            flex: 1;
        }

        .past-event-title {
            color: var(--text-primary);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .past-event-info {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        footer {
            background: var(--card-bg);
            text-align: center;
            padding: 2rem;
            border-top: 1px solid rgba(157, 78, 221, 0.3);
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }

        .footer-section h3 {
            color: var(--neon-purple);
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--neon-purple);
        }

        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(157, 78, 221, 0.3);
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 10, 10, 0.95);
                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, 6px);
            }

            .burger.active span:nth-child(2) {
                opacity: 0;
            }

            .burger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .page-title {
                font-size: 2rem;
            }

            .events-grid {
                grid-template-columns: 1fr;
            }

            .calendar {
                font-size: 0.8rem;
            }

            .calendar-day {
                min-height: 40px;
                padding: 0.5rem;
            }

            .past-event {
                flex-direction: column;
                text-align: center;
            }
        }

