* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #374151;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(122, 90, 248, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: white;
            text-decoration: none;
            background: linear-gradient(135deg, #FFFFFF, #FF6AD5);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
        }
        
        nav a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        main {
            margin-top: 70px;
        }
        
        .hero-events {
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .hero-events h1 {
            font-size: clamp(36px, 6vw, 72px);
            font-weight: 900;
            margin-bottom: 30px;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .events-grid {
            display: grid;
            gap: 30px;
        }
        
        .event-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: auto 1fr auto auto;
            align-items: center;
            gap: 30px;
            transition: all 0.3s ease;
        }
        
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(122, 90, 248, 0.2);
        }
        
        .event-date {
            text-align: center;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
            padding: 20px;
            border-radius: 15px;
            min-width: 100px;
        }
        
        .event-date .day {
            font-size: 32px;
            font-weight: 900;
            line-height: 1;
        }
        
        .event-date .month {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .event-info h3 {
            font-size: 24px;
            color: #7A5AF8;
            margin-bottom: 8px;
        }
        
        .event-info p {
            color: #6B7280;
            font-size: 16px;
        }
        
        .event-location {
            text-align: center;
            color: #374151;
            font-size: 14px;
            font-weight: 600;
        }
        
        .event-status {
            padding: 12px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 700;
            text-align: center;
            min-width: 120px;
        }
        
        .status-available {
            background: #10B981;
            color: white;
        }
        
        .status-sold-out {
            background: #EF4444;
            color: white;
        }
        
        .status-few-seats {
            background: #F59E0B;
            color: white;
        }
        
        .calendar-section {
            background: linear-gradient(45deg, #F9FAFB, #E5E7EB);
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            
        }
        
        .calendar-header {
            text-align: center;
            font-weight: 700;
            padding: 15px;
            background: #7A5AF8;
            color: white;
            border-radius: 8px;
        }
        
        .calendar-day {
            text-align: center;
            padding: 15px 10px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .calendar-day:hover {
            background: #F3F4F6;
        }
        
        .calendar-day.event-day {
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
            font-weight: 700;
        }
        
        footer {
            background: linear-gradient(135deg, #374151, #1F2937);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #FF6AD5;
        }
        
        .footer-section a {
            color: #D1D5DB;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #FF6AD5;
        }
        
        @media (max-width: 768px) {
           nav ul {
                position: fixed;
                top: 0px;
                left: 0;
                right: 0;
                background: #7A5AF8;
                flex-direction: column;
                padding: 20px;
                transform: translateY(-100%);
                transition: transform 0.3s ease;
            }
            
            nav ul.active {
                transform: translateY(0);
                top: 75px;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .event-card {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 20px;
            }
            
            .calendar-grid {
                padding: 20px;
                width: 100%;
            overflow: scroll;
            }
        }

