* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #ff1744;
    --dark-red: #c51162;
    --deep-black: #1a0000;
    --charcoal: #2c2c2c;
    --light-gray: #f5f5f5;
    --text-light: #ffffff;
    --text-dark: #212121;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--deep-black) 100%);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
}

header {
    background: rgba(26, 0, 0, 0.95);
    padding: 1.2rem 1rem;
    box-shadow: 0 4px 20px rgba(255, 23, 68, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
}

.wrapper {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-red);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.logo-link:hover {
    color: var(--text-light);
    text-shadow: 0 0 20px var(--primary-red);
}

nav {
    display: flex;
    gap: 1.8rem;
}

nav a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 0.7rem 1.3rem;
    border: 2px solid transparent;
}

nav a:hover {
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-red);
    transition: 0.3s;
}

main {
    max-width: 1350px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 4.5rem 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 12px 40px rgba(255, 23, 68, 0.4);
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-section h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.warning-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: 2px solid var(--primary-red);
    box-shadow: 0 6px 25px rgba(255, 23, 68, 0.2);
}

.warning-block h2 {
    color: var(--primary-red);
    font-size: 2.4rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}

.warning-items {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.warning-items li {
    background: rgba(255, 23, 68, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-red);
    font-size: 1.05rem;
    font-weight: 600;
}

.game-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    border: 2px solid var(--primary-red);
    box-shadow: 0 10px 35px rgba(255, 23, 68, 0.3);
}

.game-section h2 {
    color: var(--text-light);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}

.game-player {
    width: 100%;
    height: 670px;
    border: 4px solid var(--primary-red);
    border-radius: 10px;
    background: black;
    box-shadow: 0 0 30px rgba(255, 23, 68, 0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-box {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.15) 0%, rgba(197, 17, 98, 0.15) 100%);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border: 2px solid rgba(255, 23, 68, 0.3);
    text-align: center;
}

.feature-box:hover {
    transform: scale(1.03);
    border-color: var(--primary-red);
    box-shadow: 0 12px 40px rgba(255, 23, 68, 0.5);
}

.feature-box h3 {
    color: var(--primary-red);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-box p {
    line-height: 1.8;
    font-size: 1rem;
}

.emphasis-section {
    background: linear-gradient(to right, var(--dark-red) 0%, var(--primary-red) 100%);
    padding: 3.5rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 35px rgba(197, 17, 98, 0.5);
}

.emphasis-section h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.emphasis-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 950px;
    margin: 0 auto;
}

footer {
    background: var(--deep-black);
    color: var(--light-gray);
    padding: 3rem 1rem;
    margin-top: 4rem;
    border-top: 3px solid var(--primary-red);
}

.footer-wrap {
    max-width: 1350px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-light);
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 0, 0, 0.95);
    backdrop-filter: blur(15px);
}

.modal-container {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-black) 100%);
    margin: 5% auto;
    padding: 4rem;
    border: 4px solid var(--primary-red);
    border-radius: 20px;
    width: 90%;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 23, 68, 0.6);
}

.modal-container h2 {
    color: var(--primary-red);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.modal-container p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.modal-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.modal-btn {
    padding: 1.3rem 3.5rem;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    background: var(--primary-red);
    color: var(--text-light);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.modal-btn:hover {
    background: var(--dark-red);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.5);
}

.modal-btn.decline {
    background: transparent;
    border: 3px solid var(--primary-red);
    color: var(--primary-red);
}

.modal-btn.decline:hover {
    background: var(--primary-red);
    color: var(--text-light);
}

.content-document {
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 12px;
    border: 2px solid var(--primary-red);
    box-shadow: 0 8px 30px rgba(255, 23, 68, 0.3);
}

.content-document h1 {
    color: var(--primary-red);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
}

.content-document h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.content-document p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--light-gray);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deep-black);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-bottom: 3px solid var(--primary-red);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 1.2rem;
        border: none;
        border-bottom: 1px solid rgba(255, 23, 68, 0.3);
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .game-player {
        height: 470px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
