* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0B0C2A 0%, #1a1a3a 50%, #2a2a5a 100%);
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: linear-gradient(90deg, rgba(11,12,42,0.95) 0%, rgba(138,43,226,0.95) 100%);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #00FFFF, #FF1493);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-menu a:hover {
            color: #00FFFF;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 3px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #00FFFF;
            transition: 0.3s;
        }

        .main-content {
            margin-top: 100px;
            padding: 4rem 0;
        }

        .hero-events {
            text-align: center;
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #FF1493 0%, #8A2BE2 100%);
            margin-bottom: 4rem;
            position: relative;
        }

        .hero-events::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../img/07.jpg') center/cover;
            opacity: 0.2;
            z-index: 1;
        }

        .hero-events-content {
            position: relative;
            z-index: 2;
        }

        .hero-events h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #00FFFF, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-events p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .section {
            padding: 4rem 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .section h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #00FFFF, #8A2BE2);
            -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: 3rem;
            margin-bottom: 4rem;
        }

        .event-card {
            background: linear-gradient(135deg, rgba(11,12,42,0.9), rgba(138,43,226,0.9));
            border-radius: 20px;
            padding: 2.5rem;
            border: 2px solid rgba(0, 255, 255, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00FFFF, #FF1493, #8A2BE2);
            border-radius: 20px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .event-card:hover::before {
            opacity: 1;
        }

        .event-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 255, 255, 0.4);
        }

        .event-date {
            color: #FF1493;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .event-title {
            color: #00FFFF;
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .event-venue {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .event-location {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #cccccc;
        }

        .event-price {
            font-size: 1.4rem;
            color: #00FFFF;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .event-button {
            display: inline-block;
            background: linear-gradient(45deg, #FF1493, #8A2BE2);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: transform 0.3s ease;
            text-align: center;
            width: 100%;
        }

        .event-button:hover {
            transform: scale(1.05);
        }

        .calendar-section {
            background: linear-gradient(135deg, rgba(255,20,147,0.1), rgba(138,43,226,0.1));
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 4rem;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .calendar-header {
            background: linear-gradient(45deg, #8A2BE2, #FF1493);
            color: white;
        }

        .calendar-date {
            background: rgba(0, 255, 255, 0.1);
            cursor: pointer;
        }

        .calendar-date:hover {
            background: rgba(0, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .calendar-event {
            background: linear-gradient(45deg, #FF1493, #8A2BE2);
            color: white;
            position: relative;
        }

        .calendar-event::after {
            content: '🎵';
            position: absolute;
            top: -5px;
            right: -5px;
            font-size: 0.8rem;
        }

        .tour-info {
            background: linear-gradient(135deg, rgba(11,12,42,0.8), rgba(138,43,226,0.8));
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            border: 2px solid rgba(0, 255, 255, 0.3);
        }

        .tour-info h3 {
            font-size: 2.5rem;
            color: #00FFFF;
            margin-bottom: 2rem;
        }

        .tour-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            padding: 2rem;
            background: rgba(255, 20, 147, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 255, 0.3);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #FF1493;
            display: block;
        }

        .stat-label {
            font-size: 1.2rem;
            color: #00FFFF;
            margin-top: 0.5rem;
        }

        .footer {
            background: linear-gradient(135deg, #0B0C2A, #1a1a3a);
            padding: 3rem 0 1rem;
            margin-top: 4rem;
            border-top: 2px solid rgba(0, 255, 255, 0.3);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: #00FFFF;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #FF1493;
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: linear-gradient(135deg, #0B0C2A, #8A2BE2);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                backdrop-filter: blur(10px);
            }

            .nav-menu.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            .burger.active span:nth-child(2) {
                opacity: 0;
            }

            .burger.active span:nth-child(1) {
                transform: translateY(6px) rotate(45deg);
            }

            .burger.active span:nth-child(3) {
                transform: translateY(-6px) rotate(-45deg);
            }

            .hero-events h1 {
                font-size: 2.5rem;
            }

            .hero-events p {
                font-size: 1.2rem;
            }

            .section h2 {
                font-size: 2rem;
            }

            .events-grid {
                grid-template-columns: 1fr;
            }

            .calendar-grid {
                font-size: 0.9rem;
            }

            .tour-stats {
                grid-template-columns: repeat(1, 1fr);
            }
        }

