* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1f1982 0%, #2d2bb5 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: slideInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #1f1982;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: slideInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #1f1982;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(31, 25, 130, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(31, 25, 130, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1f1982, #2d2bb5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    color: #1f1982;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1f1982;
    margin-bottom: 20px;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.schedule-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.schedule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #1f1982, #2d2bb5);
}

.schedule-item:hover {
    border-color: #1f1982;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 25, 130, 0.15);
}

.schedule-date {
    background: #1f1982;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.schedule-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #1f1982;
    margin-bottom: 10px;
}

.schedule-details {
    color: #666;
    margin-bottom: 20px;
}

.schedule-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.schedule-info i {
    color: #1f1982;
    margin-right: 10px;
    width: 20px;
}

/* Register Button Base Style */
.register-btn {
    background: linear-gradient(135deg, #1f1982, #2d2bb5);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.register-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(31, 25, 130, 0.3);
    color: white;
}

/* Button Status Styles - IMPORTANT: These come after the base style */
.register-btn.happening-now {
    background: linear-gradient(135deg, #dc3545, #e74c3c) !important;
    animation: pulse-red 2s infinite;
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.5) !important;
    color: white !important;
}

.register-btn.happening-now:hover {
    background: linear-gradient(135deg, #c82333, #dc3545) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 25px rgba(220, 53, 69, 0.6) !important;
    color: white !important;
}

.register-btn.finished {
    background: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
    color: white !important;
}

.register-btn.finished:hover {
    transform: none !important;
    box-shadow: none !important;
}

.register-btn.registration-closed {
    background: #ffc107 !important;
    color: #212529 !important;
    cursor: not-allowed !important;
    opacity: 0.9 !important;
}

.register-btn.registration-closed:hover {
    transform: none !important;
    box-shadow: none !important;
    color: #212529 !important;
}

.register-btn.tba {
    background: #6f42c1 !important;
    cursor: not-allowed !important;
    opacity: 0.8 !important;
    color: white !important;
}

.register-btn.tba:hover {
    transform: none !important;
    box-shadow: none !important;
    color: white !important;
}

/* Keyframe Animations */
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
    }

    50% {
        box-shadow: 0 0 30px rgba(220, 53, 69, 0.8);
    }

    100% {
        box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f1982 0%, #2d2bb5 100%);
    color: white;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item i {
    font-size: 2rem;
    margin-right: 15px;
    color: #fff;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1f1982;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.6;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #1f1982;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

/* Platform Icons */
.platform-icon {
    margin-right: 5px;
}

.platform-google {
    color: #4285f4;
}

.platform-facebook {
    color: #1877f2;
}

.platform-both {
    color: #1f1982;
}

/* No Schedule Message */
.no-schedule-message {
    grid-column: 1 / -1;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .schedule-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}