* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: linear-gradient(135deg, #0a0a1f 0%, #1a0d2e 25%, #2d1b69 50%, #0f0f23 75%, #000000 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 10, 31, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 255, 157, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #00ff9d;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .nav-menu a:hover, .nav-menu a.active {
            color: #00ff9d;
            background: rgba(0, 255, 157, 0.1);
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #00ff9d;
            margin: 3px 0;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 100px 0;
        }

        .page-hero {
            text-align: center;
            margin-bottom: 100px;
            background: linear-gradient(45deg, rgba(45, 27, 105, 0.4), rgba(10, 10, 31, 0.8));
            padding: 100px 0;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('../img/12.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: -1;
        }

        .page-hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #00ff9d, #6c5ce7);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section {
            margin-bottom: 100px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 40px;
            color: #00ff9d;
            text-align: center;
        }

        .events-filter {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 1px solid rgba(0, 255, 157, 0.3);
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .filter-btn:hover, .filter-btn.active {
            background: #00ff9d;
            color: #000;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .event-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0, 255, 157, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
        }

        .event-card:hover {
            transform: translateY(-5px);
            border-color: #00ff9d;
            box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
        }

        .event-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .event-card:hover .event-image img {
            transform: scale(1.1);
        }

        .event-date {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #00ff9d;
            color: #000;
            padding: 8px 15px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .event-content {
            padding: 30px;
        }

        .event-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #00ff9d;
            margin-bottom: 15px;
        }

        .event-venue {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .event-location {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .event-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .event-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .event-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #00ff9d;
        }

        .event-btn {
            background: linear-gradient(45deg, #6c5ce7, #00ff9d);
            color: #ffffff;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .event-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(108, 92, 231, 0.4);
        }

        .calendar-section {
            background: rgba(255, 255, 255, 0.03);
            padding: 60px 40px;
            border-radius: 25px;
            border: 1px solid rgba(0, 255, 157, 0.1);
            backdrop-filter: blur(10px);
            margin-bottom: 80px;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
            margin-top: 30px;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .calendar-day.has-event {
            background: linear-gradient(45deg, #6c5ce7, #00ff9d);
            color: #000;
        }

        .calendar-day:hover {
            background: rgba(0, 255, 157, 0.2);
        }

        .tour-timeline {
            background: linear-gradient(45deg, rgba(26, 13, 46, 0.8), rgba(15, 15, 35, 0.9));
            padding: 60px 40px;
            border-radius: 25px;
            margin-bottom: 80px;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            padding: 30px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .timeline-item:last-child {
            border-bottom: none;
        }

        .timeline-date {
            min-width: 120px;
            color: #00ff9d;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .timeline-content {
            flex: 1;
            margin: 0 30px;
        }

        .timeline-venue {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .timeline-location {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
        }

        .timeline-type {
            background: rgba(0, 255, 157, 0.2);
            color: #00ff9d;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.9rem;
            display: inline-block;
        }

        .timeline-status {
            text-align: right;
            min-width: 100px;
        }

        .status-available {
            color: #00ff9d;
            font-weight: 700;
        }

        .status-sold-out {
            color: #ff6b35;
            font-weight: 700;
        }

        .newsletter-cta {
            background: linear-gradient(135deg, rgba(45, 27, 105, 0.6), rgba(26, 13, 46, 0.8));
            padding: 80px 40px;
            border-radius: 25px;
            text-align: center;
        }

        .newsletter-cta h3 {
            font-size: 2rem;
            color: #00ff9d;
            margin-bottom: 20px;
        }

        .newsletter-cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 157, 0.2);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form button {
            background: linear-gradient(45deg, #6c5ce7, #00ff9d);
            color: #ffffff;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
        }

        footer {
            background: linear-gradient(135deg, rgba(10, 10, 31, 0.95), rgba(0, 0, 0, 0.9));
            padding: 60px 0 30px;
            border-top: 1px solid rgba(0, 255, 157, 0.2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: #00ff9d;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .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: #00ff9d;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 31, 0.95);
                flex-direction: column;
                padding: 20px;
                gap: 10px;
            }

            .nav-menu.active {
                display: flex;
            }

            .burger {
                display: flex;
            }

            .page-hero h1 {
                font-size: 2.5rem;
            }

            .events-grid {
                grid-template-columns: 1fr;
            }

            .timeline-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .calendar-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

