* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #1F2937;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(31, 41, 55, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #EC4899;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: #F9FAFB;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #8B5CF6;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #F9FAFB;
            margin: 3px 0;
            transition: 0.3s;
        }

        main {
            margin-top: 80px;
            padding: 4rem 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-events {
            background: white;
            border-radius: 20px;
            padding: 4rem;
            margin-bottom: 3rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            text-align: center;
        }

        .hero-events h1 {
            font-size: 3rem;
            color: #8B5CF6;
            margin-bottom: 1rem;
        }

        .hero-events p {
            font-size: 1.3rem;
            color: #6B7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .events-calendar {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .events-calendar h2 {
            font-size: 2.2rem;
            color: #EC4899;
            margin-bottom: 2rem;
            text-align: center;
        }

        .event-grid {
            display: grid;
            gap: 2rem;
        }

        .event-card {
            background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.2);
        }

        .event-header {
            background: linear-gradient(135deg, #8B5CF6, #EC4899);
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .event-date {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .event-month {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .event-content {
            padding: 2rem;
        }

        .event-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1F2937;
            margin-bottom: 1rem;
        }

        .event-venue {
            font-size: 1.1rem;
            color: #6B7280;
            margin-bottom: 0.5rem;
        }

        .event-location {
            font-size: 1rem;
            color: #9CA3AF;
            margin-bottom: 1.5rem;
        }

        .event-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #374151;
            margin-bottom: 2rem;
        }

        .event-actions {
            display: flex;
            gap: 1rem;
            justify-content: space-between;
            align-items: center;
        }

        .ticket-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #EC4899;
        }

        .ticket-button {
            padding: 0.75rem 1.5rem;
            background: linear-gradient(45deg, #8B5CF6, #EC4899);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ticket-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
        }

        .sold-out {
            background: #9CA3AF;
            cursor: not-allowed;
        }

        .sold-out:hover {
            transform: none;
            box-shadow: none;
        }

        .past-events {
            background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
            color: white;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
        }

        .past-events h2 {
            font-size: 2.2rem;
            color: #EC4899;
            margin-bottom: 2rem;
            text-align: center;
        }

        .past-event-item {
            background: rgba(139, 92, 246, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            border-left: 4px solid #EC4899;
        }

        .past-event-date {
            font-weight: bold;
            color: #EC4899;
            margin-bottom: 0.5rem;
        }

        .event-newsletter {
            background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
            color: white;
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
        }

        .event-newsletter h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .event-newsletter p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            max-width: 400px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            background: rgba(255,255,255,0.2);
            color: white;
            backdrop-filter: blur(10px);
        }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.8);
        }

        .newsletter-form button {
            padding: 1rem 2rem;
            background: white;
            color: #8B5CF6;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
        }

        footer {
            background: #1F2937;
            color: white;
            padding: 3rem 2rem 1rem;
            margin-top: 3rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: #EC4899;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: #D1D5DB;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #8B5CF6;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            margin-top: 2rem;
            color: #9CA3AF;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: #1F2937;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .burger {
                display: flex;
            }

            main {
                padding: 2rem 1rem;
            }

            .hero-events {
                padding: 2rem;
            }

            .hero-events h1 {
                font-size: 2rem;
            }

            .events-calendar, .past-events, .event-newsletter {
                padding: 2rem;
            }

            .event-actions {
                flex-direction: column;
                gap: 1rem;
            }

            .newsletter-form {
                flex-direction: column;
            }
        }

