* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a1929;
    color: #e0e0e0;
    line-height: 1.8;
}

header {
    background: linear-gradient(90deg, #00bcd4 0%, #0097a7 100%);
    box-shadow: 0 4px 20px rgba(0, 188, 212, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.brand svg {
    width: 50px;
    height: 50px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle div {
    width: 32px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: background 0.3s;
    font-weight: 600;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #0c4a6e 100%);
    border-radius: 25px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-section h1 {
    font-size: 3.8rem;
    color: #00bcd4;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-section p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.info-boxes {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(145deg, #1a2332 0%, #0f1621 100%);
    border-left: 5px solid #00bcd4;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.info-box h3 {
    color: #00bcd4;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.info-box p {
    font-size: 1.05rem;
}

.game-section {
    background: #1a2332;
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.game-section h2 {
    color: #00bcd4;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.game-embed {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.text-block {
    background: #1a2332;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.text-block h2 {
    color: #00bcd4;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.text-block p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

footer {
    background: #000810;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-container h3 {
    color: #00bcd4;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #4dd0e1;
}

.footer-container p {
    color: #b0bec5;
    margin-top: 2rem;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-box {
    background: linear-gradient(135deg, #1e3a8a 0%, #0c4a6e 100%);
    border: 4px solid #00bcd4;
    border-radius: 25px;
    padding: 3.5rem;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 188, 212, 0.5);
}

.modal-box h2 {
    color: #00bcd4;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.modal-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.modal-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.modal-actions button {
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background: #00bcd4;
    color: #000810;
}

.btn-confirm:hover {
    background: #4dd0e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

.btn-decline {
    background: transparent;
    color: #00bcd4;
    border: 3px solid #00bcd4;
}

.btn-decline:hover {
    background: rgba(0, 188, 212, 0.1);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #0c4a6e;
        padding: 5rem 2rem;
        transition: right 0.3s;
        z-index: 9998;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .info-boxes {
        flex-direction: column;
    }

    .game-embed {
        height: 550px;
    }

    .modal-box {
        padding: 2.5rem 2rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions button {
        width: 100%;
    }
}
