* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #374151;
            background: #F9FAFB;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #7A5AF8;
            text-decoration: none;
        }

        .nav {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav a {
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav a:hover, .nav a.active {
            color: #7A5AF8;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #374151;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 4rem 0;
        }

        .page-hero {
            text-align: center;
            padding: 4rem 0;
            background: linear-gradient(135deg, #7A5AF8 0%, #FF6AD5 100%);
            color: white;
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../img/14.jpg') center/cover;
            opacity: 0.2;
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
        }

        .page-hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ffffff, #f0f9ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .tour-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #6B7280;
            font-weight: 600;
        }

        .events-section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .events-grid {
            display: grid;
            gap: 2rem;
        }

        .event-card {
            background: linear-gradient(135deg, rgba(122, 90, 248, 0.05), rgba(255, 106, 213, 0.05));
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(122, 90, 248, 0.1);
            transition: all 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(122, 90, 248, 0.15);
        }

        .event-header {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 2rem;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .event-date {
            text-align: center;
            padding: 1rem;
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
            border-radius: 10px;
            min-width: 100px;
        }

        .event-date .day {
            font-size: 2rem;
            font-weight: 900;
            display: block;
            line-height: 1;
        }

        .event-date .month {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .event-info h3 {
            color: #374151;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .event-venue {
            color: #7A5AF8;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .event-location {
            color: #6B7280;
            font-size: 0.9rem;
        }

        .event-ticket {
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .event-ticket:hover {
            transform: scale(1.05);
        }

        .event-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(122, 90, 248, 0.1);
        }

        .event-detail {
            text-align: center;
        }

        .event-detail-label {
            color: #6B7280;
            font-size: 0.8rem;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .event-detail-value {
            color: #374151;
            font-weight: 600;
        }

        .calendar-section {
            background: linear-gradient(135deg, rgba(122, 90, 248, 0.02), rgba(255, 106, 213, 0.02));
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background: #E5E7EB;
            border-radius: 10px;
            overflow: hidden;
        }

        .calendar-header {
            background: #7A5AF8;
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .calendar-day {
            background: white;
            padding: 1rem;
            text-align: center;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .calendar-day.event {
            background: linear-gradient(135deg, rgba(122, 90, 248, 0.1), rgba(255, 106, 213, 0.1));
            color: #7A5AF8;
            font-weight: 600;
        }

        .calendar-day.today {
            background: #FF6AD5;
            color: white;
            font-weight: 600;
        }

        .special-events {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin: 3rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .special-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .special-card {
            background: linear-gradient(135deg, #7A5AF8, #FF6AD5);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
        }

        .special-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .special-card p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .special-button {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .special-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        footer {
            background: #1F2937;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #FF6AD5;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: #D1D5DB;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9CA3AF;
        }

        @media (max-width: 768px) {
            .nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            .nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .special-events{
                 padding: 1em;
            }

            .burger {
                display: flex;
            }

            .page-hero h1 {
                font-size: 2.5rem;
            }

            .event-header {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .calendar-grid {
                grid-template-columns: 1fr;
            }
        }

