* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f0f4ff, #e6f0ff);
    color: #1a1a2e;
    line-height: 1.7;
}

.top-nav {
    background: linear-gradient(135deg, #0f4c81 0%, #1e88e5 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-item.active {
    background: #ff6b35;
    color: #ffffff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    background: linear-gradient(135deg, #1e88e5 0%, #0f4c81 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: #ffffff;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    background: #ff8555;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f4c81;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.alerts {
    margin-bottom: 4rem;
}

.alert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.alert-card {
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.alert-card:hover {
    transform: translateY(-8px);
}

.alert-card.red {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #ffffff;
}

.alert-card.blue {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #ffffff;
}

.alert-card.orange {
    background: linear-gradient(135deg, #ff9a56, #ff6b35);
    color: #ffffff;
}

.alert-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.alert-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.game-showcase {
    margin-bottom: 4rem;
}

.game-showcase h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f4c81;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 2rem;
}

.game-wrapper {
    background: #000000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-disclaimer {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.benefits {
    margin-bottom: 4rem;
}

.benefits h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f4c81;
    text-align: center;
    margin-bottom: 3rem;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: #1e88e5;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f4c81;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

.footer {
    background: linear-gradient(135deg, #0f4c81 0%, #1e88e5 100%);
    color: #ffffff;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-message {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-box {
    background: linear-gradient(135deg, #ffffff, #f0f4ff);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 500px;
    margin: 1rem;
}

.modal-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f4c81;
    margin-bottom: 1.5rem;
}

.modal-box p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.modal-btn.yes {
    background: #1e88e5;
    color: #ffffff;
}

.modal-btn.yes:hover {
    background: #0f4c81;
    transform: scale(1.05);
}

.modal-btn.no {
    background: #ff6b6b;
    color: #ffffff;
}

.modal-btn.no:hover {
    background: #ee5a6f;
    transform: scale(1.05);
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #0f4c81;
    text-align: center;
    margin-bottom: 1rem;
}

.page-subtitle,
.page-date {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.page-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.play-container {
    max-width: 1100px;
}

.play-info {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.play-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f4c81;
    margin-bottom: 2rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
}

.info-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(135deg, #1e88e5, #0f4c81);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-item p {
    color: #4a4a4a;
    line-height: 1.6;
}

.play-notes {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.play-notes h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f4c81;
    margin-bottom: 1.5rem;
}

.play-notes ul {
    list-style: none;
    padding: 0;
}

.play-notes li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a4a4a;
    line-height: 1.7;
}

.play-notes li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #ff6b35;
}

.legal-container {
    max-width: 900px;
}

.legal-block {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
}

.legal-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f4c81;
    margin-bottom: 1.5rem;
}

.legal-block p {
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-block.highlight {
    border: 3px solid #ff6b35;
    background: linear-gradient(to bottom, #fff5f0, #ffffff);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #0f4c81 0%, #1e88e5 100%);
        width: 100%;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        padding: 1rem;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .alert-cards,
    .benefit-cards {
        grid-template-columns: 1fr;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .game-iframe {
        height: 300px;
    }
    
    .legal-block,
    .play-info,
    .play-notes {
        padding: 1.5rem;
    }
}
