* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #0f0f23, #1a1a3e, #2d1b69);
            color: #ffffff;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 900;
            background: linear-gradient(45deg, #00d4ff, #9c40ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #00d4ff;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #00d4ff, #9c40ff);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: #00d4ff;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        main {
            padding-top: 120px;
            min-height: 100vh;
        }
        
        .page-hero {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(135deg, #2d1b69, #4c1d95);
        }
        
        .page-hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #00d4ff, #9c40ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .page-hero p {
            font-size: 1.3rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .events-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a1a3e, #0f0f23);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 60px;
            text-align: center;
            background: linear-gradient(45deg, #00d4ff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .events-grid {
            display: grid;
            gap: 40px;
        }
        
        .event-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.3);
            transition: all 0.3s ease;
            display: grid;
            grid-template-columns: 200px 1fr auto;
            gap: 40px;
            align-items: center;
        }
        
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(156, 64, 255, 0.2);
        }
        
        .event-date {
            text-align: center;
        }
        
        .event-day {
            font-size: 3rem;
            font-weight: 900;
            color: #00d4ff;
            line-height: 1;
        }
        
        .event-month {
            font-size: 1.2rem;
            font-weight: 600;
            color: #9c40ff;
            text-transform: uppercase;
        }
        
        .event-year {
            font-size: 1rem;
            opacity: 0.8;
        }
        
        .event-info h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: #ffffff;
        }
        
        .event-venue {
            color: #00d4ff;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .event-location {
            opacity: 0.8;
            margin-bottom: 15px;
        }
        
        .event-description {
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .event-ticket {
            text-align: center;
        }
        
        .ticket-status {
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .available {
            background: linear-gradient(45deg, #00d4ff, #9c40ff);
            color: white;
        }
        
        .limited {
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
            color: white;
        }
        
        .coming-soon {
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
        }
        
        .ticket-price {
            font-size: 1.5rem;
            font-weight: 900;
            color: #00d4ff;
            margin-bottom: 10px;
        }
        
        .ticket-btn {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(45deg, #00d4ff, #9c40ff);
            color: white;
            text-decoration: none;
            font-weight: 700;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .ticket-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
        }
        
        .ticket-btn.disabled {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            cursor: not-allowed;
        }
        
        .venue-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #2d1b69, #1a1a3e);
        }
        
        .venues-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .venue-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(0, 212, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .venue-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(156, 64, 255, 0.2);
        }
        
        .venue-image {
            height: 200px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .venue-card h4 {
            color: #00d4ff;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .venue-card .location {
            color: #9c40ff;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .calendar-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0f0f23, #2d1b69);
        }
        
        .calendar-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .calendar-nav {
            background: linear-gradient(45deg, #00d4ff, #9c40ff);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .calendar-nav:hover {
            transform: scale(1.05);
        }
        
        .calendar-month {
            font-size: 2rem;
            font-weight: 800;
            color: #00d4ff;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .calendar-day:hover {
            background: rgba(0, 212, 255, 0.2);
        }
        
        .calendar-day.event-day {
            background: linear-gradient(45deg, #00d4ff, #9c40ff);
            color: white;
        }
        
        .calendar-day.event-day::after {
            content: '•';
            position: absolute;
            bottom: 5px;
            font-size: 1.5rem;
            color: #fff;
        }
        
        footer {
            background: #0a0a1a;
            padding: 60px 0 30px;
            text-align: center;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            color: #00d4ff;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #00d4ff;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(15, 15, 35, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .page-hero h1 {
                font-size: 3rem;
            }
            
            .event-card {
                grid-template-columns: 1fr;
                gap: 20px;
                text-align: center;
            }
            
            .calendar-grid {
                font-size: 0.9rem;
            }
        }

