* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.65;
    color: #1a1a1a;
    background: #fafafa;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

/* Age Overlay */
.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-overlay.visible {
    display: flex;
}

.age-container {
    background: linear-gradient(145deg, #dc2626 0%, #991b1b 100%);
    padding: 55px 45px;
    border-radius: 18px;
    text-align: center;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 4px solid #fbbf24;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-container h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.age-container p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #fef3c7;
}

.age-prompt {
    font-weight: 600;
    margin-top: 25px;
    font-size: 1.25rem;
    color: #fbbf24;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.btn-accept, .btn-decline {
    padding: 16px 42px;
    font-size: 1.15rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-accept {
    background: #fbbf24;
    color: #7c2d12;
}

.btn-accept:hover {
    background: #f59e0b;
    transform: scale(1.06);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}

.btn-decline {
    background: #4b5563;
    color: white;
}

.btn-decline:hover {
    background: #374151;
}

/* Navbar */
.navbar {
    background: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area h1 {
    font-size: 2.5rem;
    color: #fbbf24;
    cursor: pointer;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.menu-item {
    color: #fafafa;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
    letter-spacing: 1px;
}

.menu-item:hover {
    color: #fbbf24;
    border-bottom-color: #dc2626;
}

.nav-burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-line {
    width: 35px;
    height: 4px;
    background: #fbbf24;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-burger.active .burger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 8px);
}

.nav-burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.nav-burger.active .burger-line:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -8px);
}

/* Hero Block */
.hero-block {
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
    padding: 110px 0;
    color: white;
    text-align: center;
}

.hero-text h2 {
    font-size: 4.2rem;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.3rem;
    max-width: 850px;
    margin: 0 auto 50px;
    line-height: 1.8;
    color: #fef3c7;
}

.action-button {
    display: inline-block;
    background: #fbbf24;
    color: #7c2d12;
    padding: 20px 60px;
    font-size: 1.3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.action-button:hover {
    background: #f59e0b;
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

/* Intro Block */
.intro-block {
    padding: 95px 0;
    background: white;
}

.intro-header {
    text-align: center;
    margin-bottom: 70px;
}

.intro-header h2 {
    font-size: 3.5rem;
    color: #dc2626;
    letter-spacing: 2px;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.intro-box {
    background: #fafafa;
    padding: 45px 35px;
    border-radius: 16px;
    border: 3px solid #dc2626;
    transition: all 0.3s ease;
    text-align: center;
}

.intro-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(220, 38, 38, 0.2);
    border-color: #fbbf24;
}

.box-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
}

.intro-box h3 {
    font-size: 2rem;
    color: #7c2d12;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.intro-box p {
    color: #374151;
    line-height: 1.75;
    font-size: 1.05rem;
}

/* Gameplay Block */
.gameplay-block {
    padding: 95px 0;
    background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
}

.gameplay-header {
    text-align: center;
    margin-bottom: 60px;
}

.gameplay-header h2 {
    font-size: 3.5rem;
    color: #dc2626;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.gameplay-intro {
    font-size: 1.2rem;
    color: #78350f;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.game-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid #dc2626;
}

.game-player {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-disclaimer {
    max-width: 1250px;
    margin: 40px auto 0;
    padding: 28px;
    background: #7c2d12;
    border-left: 8px solid #fbbf24;
    border-radius: 10px;
}

.game-disclaimer p {
    color: #fef3c7;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Perks Block */
.perks-block {
    padding: 95px 0;
    background: white;
}

.perks-title {
    text-align: center;
    font-size: 3.5rem;
    color: #dc2626;
    margin-bottom: 70px;
    letter-spacing: 2px;
}

.perks-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.perk-card {
    padding: 38px 32px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 14px;
    border: 2px solid #fbbf24;
}

.perk-card h4 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: #7c2d12;
    letter-spacing: 1px;
}

.perk-card p {
    color: #374151;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Warning Block */
.warning-block {
    padding: 75px 0;
    background: #dc2626;
}

.warning-box {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 50px 45px;
    border-radius: 18px;
    border: 5px solid #fbbf24;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.warning-box h3 {
    font-size: 2.8rem;
    margin-bottom: 35px;
    color: #dc2626;
    text-align: center;
    letter-spacing: 2px;
}

.warning-list {
    margin-bottom: 30px;
}

.warning-entry {
    padding: 20px;
    margin-bottom: 18px;
    background: #fef3c7;
    border-left: 6px solid #dc2626;
    border-radius: 10px;
    color: #7c2d12;
    font-size: 1.1rem;
    font-weight: 500;
}

.warning-link {
    text-align: center;
    margin-top: 30px;
    color: #4b5563;
    font-size: 1.05rem;
}

.warning-link a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 700;
}

.warning-link a:hover {
    text-decoration: underline;
}

/* Play Pages */
.play-intro {
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
    padding: 85px 0 55px;
    text-align: center;
    color: white;
}

.play-intro h2 {
    font-size: 4rem;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.play-text {
    font-size: 1.25rem;
    max-width: 750px;
    margin: 0 auto;
    color: #fef3c7;
}

.play-section {
    padding: 70px 0 95px;
    background: #fafafa;
}

.play-guide {
    max-width: 1250px;
    margin: 45px auto 0;
    background: white;
    padding: 45px;
    border-radius: 14px;
    border: 3px solid #dc2626;
}

.play-guide h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #dc2626;
    letter-spacing: 2px;
}

.guide-points {
    list-style: none;
}

.guide-points li {
    padding: 18px 0;
    color: #374151;
    font-size: 1.1rem;
    border-bottom: 1px solid #e5e7eb;
}

.guide-points li:last-child {
    border-bottom: none;
}

.play-reminder {
    max-width: 1250px;
    margin: 40px auto 0;
    padding: 32px;
    background: #7c2d12;
    border-left: 8px solid #fbbf24;
    border-radius: 10px;
}

.play-reminder p {
    color: #fef3c7;
    font-size: 1.15rem;
    font-weight: 600;
}

/* Document Pages */
.document-page {
    padding: 95px 0;
    background: #fafafa;
    min-height: 70vh;
}

.document-page h2 {
    font-size: 3.8rem;
    margin-bottom: 55px;
    color: #dc2626;
    text-align: center;
    letter-spacing: 3px;
}

.document-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 60px 55px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 4px solid #fbbf24;
}

.document-content h3 {
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #7c2d12;
    letter-spacing: 1px;
}

.document-content h4 {
    font-size: 1.7rem;
    margin-top: 28px;
    margin-bottom: 15px;
    color: #dc2626;
}

.document-content p {
    margin-bottom: 22px;
    color: #374151;
    line-height: 1.85;
    font-size: 1.05rem;
}

.document-content ul {
    margin-left: 35px;
    margin-bottom: 22px;
    color: #374151;
}

.document-content ul li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.document-content a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 700;
}

.document-content a:hover {
    text-decoration: underline;
}

.doc-date {
    font-style: italic;
    color: #9ca3af;
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.alert-banner {
    background: #fef3c7;
    padding: 38px;
    border-left: 8px solid #dc2626;
    border-radius: 12px;
    margin: 40px 0;
}

.alert-banner h3 {
    color: #7c2d12;
    margin-top: 0;
}

.alert-banner p {
    color: #78350f;
}

.alert-banner ul li {
    color: #78350f;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    padding: 75px 0 40px;
    color: #fafafa;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-block h4 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fbbf24;
    letter-spacing: 2px;
}

.footer-block p {
    line-height: 1.8;
    color: #d1d5db;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 16px;
}

.footer-list a {
    color: #fde68a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-list a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 3px solid #dc2626;
    color: #9ca3af;
    font-size: 1.05rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background: #1a1a1a;
        flex-direction: column;
        padding: 40px;
        transition: right 0.4s ease;
        border-left: 4px solid #dc2626;
    }

    .nav-menu.show {
        right: 0;
    }

    .menu-item {
        padding: 20px 0;
        font-size: 1.3rem;
        border-bottom: 2px solid #374151;
    }

    .hero-text h2 {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .game-player {
        height: 500px;
    }

    .document-content {
        padding: 45px 30px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .age-container {
        margin: 30px;
        padding: 40px 28px;
    }

    .age-actions {
        flex-direction: column;
    }

    .btn-accept, .btn-decline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 2.2rem;
    }

    .game-player {
        height: 400px;
    }

    .logo-area h1 {
        font-size: 1.9rem;
    }

    .perks-title {
        font-size: 2.5rem;
    }
}