* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0d0000;
    color: #ffcccb;
    line-height: 1.65;
}

.top-notification {
    background: #8b0000;
    padding: 0.8rem;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 2px solid #ff0033;
}

.site-header {
    background: linear-gradient(to bottom, #4d0000, #2d0000);
    padding: 2rem 0;
    box-shadow: 0 4px 25px rgba(139, 0, 0, 0.6);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: #ff0033;
    font-size: 2.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    letter-spacing: 1px;
}

.logo-link svg {
    width: 65px;
    height: 65px;
}

.menu-icon {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-icon div {
    width: 40px;
    height: 5px;
    background: #ff0033;
    margin: 8px 0;
    border-radius: 3px;
    transition: all 0.3s;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.navigation a {
    color: #ffcccb;
    text-decoration: none;
    padding: 1.2rem 2.2rem;
    font-weight: 700;
    background: rgba(139, 0, 0, 0.4);
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.navigation a:hover {
    background: #ff0033;
    color: #ffffff;
    border-color: #ff0033;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-area {
    background: linear-gradient(to right, #8b0000, #4d0000);
    padding: 6rem 4rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
    border: 3px solid #ff0033;
}

.hero-area h1 {
    font-size: 5rem;
    color: #ff0033;
    margin-bottom: 2rem;
    font-weight: 900;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-area p {
    font-size: 1.7rem;
    max-width: 950px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 2;
}

.cards-container {
    display: flex;
    gap: 2.5rem;
    margin: 4rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(to bottom, #2d0000, #1a0000);
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 3px solid #8b0000;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.info-card h3 {
    color: #ff0033;
    font-size: 2rem;
    margin-bottom: 1.8rem;
    font-weight: 900;
}

.info-card p {
    font-size: 1.15rem;
    line-height: 1.9;
}

.game-section {
    background: #1a0000;
    padding: 4rem 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
    border: 3px solid #8b0000;
}

.game-section h2 {
    color: #ff0033;
    font-size: 3.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.game-frame {
    width: 100%;
    height: 900px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.9);
}

.text-section {
    background: linear-gradient(to bottom, #2d0000, #1a0000);
    padding: 3.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    border-right: 8px solid #ff0033;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.text-section h2 {
    color: #ff0033;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.text-section p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    line-height: 2;
}

.footer-area {
    background: #000000;
    padding: 5rem 2rem;
    margin-top: 6rem;
    border-top: 4px solid #ff0033;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-wrapper h3 {
    color: #ff0033;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: #ff0033;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-navigation a:hover {
    color: #ff3355;
}

.footer-wrapper p {
    color: #ffaaaa;
    font-size: 1.1rem;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: linear-gradient(to bottom, #8b0000, #4d0000);
    border: 5px solid #ff0033;
    border-radius: 20px;
    padding: 5rem;
    max-width: 700px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 90px rgba(255, 0, 51, 0.6);
}

.modal-box h2 {
    color: #ff0033;
    font-size: 3.2rem;
    margin-bottom: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.modal-box p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 2;
    color: #ffffff;
}

.modal-actions {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.modal-actions button {
    padding: 1.8rem 5rem;
    font-size: 1.6rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #ff0033;
    color: #ffffff;
}

.btn-accept:hover {
    background: #ff3355;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.5);
}

.btn-decline {
    background: transparent;
    color: #ff0033;
    border: 5px solid #ff0033;
}

.btn-decline:hover {
    background: rgba(255, 0, 51, 0.2);
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: #2d0000;
        padding: 6rem 2rem;
        transition: left 0.3s;
        z-index: 9999;
    }

    .navigation.open {
        left: 0;
    }

    .navigation ul {
        flex-direction: column;
        gap: 2rem;
    }

    .navigation a {
        display: block;
        text-align: center;
    }

    .hero-area h1 {
        font-size: 3rem;
    }

    .hero-area p {
        font-size: 1.4rem;
    }

    .cards-container {
        flex-direction: column;
    }

    .game-frame {
        height: 700px;
    }

    .modal-box {
        padding: 3.5rem 2.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions button {
        width: 100%;
    }
}
