* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: #1a0505;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%);
    color: #f3f4f6;
    line-height: 1.6;
    min-height: 100vh;
}

.page-header {
    background: linear-gradient(90deg, #7f1d1d 0%, #991b1b 50%, #7f1d1d 100%);
    padding: 1.3rem 0;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #fbbf24;
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo-emblem {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #dc2626, #fbbf24);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.6);
    transform: rotate(45deg);
}

.logo-emblem-inner {
    transform: rotate(-45deg);
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.menu-btn {
    display: none;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
    transition: all 0.3s;
}

.menu-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(220, 38, 38, 0.6);
}

.menu-icon {
    display: block;
    width: 28px;
    height: 3px;
    background: #fbbf24;
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-btn.open .menu-icon:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-btn.open .menu-icon:nth-child(2) {
    opacity: 0;
}

.menu-btn.open .menu-icon:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 2.8rem;
}

.site-nav a {
    color: #f3f4f6;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 6px;
}

.site-nav a:hover {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.intro-banner {
    padding: 6rem 35px;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
}

.intro-banner h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(220, 38, 38, 0.7);
    line-height: 1.1;
}

.intro-description {
    font-size: 1.4rem;
    color: #d1d5db;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.9;
    font-weight: 500;
}

.warning-panel {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.6), rgba(153, 27, 27, 0.6));
    border: 3px solid #dc2626;
    border-radius: 15px;
    padding: 3rem;
    margin: 4rem auto;
    max-width: 1100px;
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.warning-panel h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.warning-panel ul {
    list-style: none;
}

.warning-panel li {
    padding: 1.3rem;
    margin: 1rem 0;
    background: rgba(220, 38, 38, 0.2);
    border-left: 5px solid #fbbf24;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 5px;
}

.play-zone {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 35px;
}

.game-container-main {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.5), rgba(153, 27, 27, 0.5));
    border: 3px solid #dc2626;
    border-radius: 18px;
    padding: 3.5rem;
    box-shadow: 0 15px 45px rgba(220, 38, 38, 0.4);
}

.game-container-main h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.game-display {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 12px;
    background: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1500px;
    margin: 6rem auto;
    padding: 0 35px;
}

.feature-box {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.3), rgba(153, 27, 27, 0.3));
    border: 2px solid rgba(220, 38, 38, 0.5);
    border-radius: 15px;
    padding: 3rem;
    transition: all 0.4s;
    position: relative;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #dc2626, #fbbf24);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.feature-box:hover {
    transform: translateY(-12px);
    border-color: #fbbf24;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.5);
}

.feature-box:hover::before {
    opacity: 0.3;
}

.feature-box h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.feature-box p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
}

.document-content {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 35px;
}

.document-content h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
}

.document-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin: 3rem 0 1.5rem;
    text-transform: uppercase;
}

.document-content p {
    color: #d1d5db;
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.9;
    font-weight: 500;
}

.page-footer {
    background: linear-gradient(90deg, #7f1d1d 0%, #991b1b 50%, #7f1d1d 100%);
    padding: 4rem 35px;
    margin-top: 7rem;
    border-top: 4px solid #fbbf24;
}

.footer-inner {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f3f4f6;
    margin-bottom: 2.5rem;
}

.footer-links-list {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-links-list a {
    color: #fbbf24;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.footer-links-list a:hover {
    color: #fde68a;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

.footer-info {
    margin-top: 3rem;
    color: #9ca3af;
    font-size: 1rem;
}

.verification-screen {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.verification-screen.active {
    display: flex;
}

.verification-card {
    background: linear-gradient(135deg, #7f1d1d, #991b1b);
    padding: 4.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 650px;
    border: 4px solid #dc2626;
    box-shadow: 0 25px 70px rgba(220, 38, 38, 0.6);
}

.verification-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.verification-card p {
    color: #d1d5db;
    margin-bottom: 3.5rem;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
}

.verification-controls {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.verify-btn {
    padding: 1.4rem 4rem;
    font-size: 1.3rem;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.verify-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.verify-btn.enter {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a0505;
}

.verify-btn.exit {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #ffffff;
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        background: rgba(127, 29, 29, 0.98);
        transition: left 0.3s;
        padding: 3.5rem 0;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
    }

    .site-nav.show {
        left: 0;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .site-nav a {
        font-size: 1.5rem;
    }

    .intro-banner h1 {
        font-size: 3rem;
    }

    .intro-description {
        font-size: 1.2rem;
    }

    .features-section {
        grid-template-columns: 1fr;
    }

    .game-display {
        height: 500px;
    }

    .footer-links-list {
        flex-direction: column;
        gap: 2rem;
    }

    .verification-card {
        padding: 3rem;
        max-width: 90%;
    }

    .verification-controls {
        flex-direction: column;
        gap: 1.5rem;
    }
}
