@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Teko', sans-serif;
    background: linear-gradient(to bottom, #1a0000 0%, #330000 50%, #1a0000 100%);
    color: #ffccaa;
    min-height: 100vh;
    line-height: 1.6;
}

.header-strip {
    background: linear-gradient(135deg, #660000, #cc0000);
    border-bottom: 4px solid #ff6600;
    padding: 0.5rem 0;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.branding {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.brand-mark {
    width: 65px;
    height: 65px;
    filter: drop-shadow(0 0 15px #ff6600);
}

.brand-label {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 102, 0, 0.6);
    letter-spacing: 4px;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.navigation a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #ffccaa;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.navigation a:hover {
    border-color: #ff6600;
    background: rgba(255, 102, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.5);
}

.menu-btn {
    display: none;
    background: linear-gradient(135deg, #ff6600, #cc0000);
    border: 2px solid #ff6600;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.title-block {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(102, 0, 0, 0.6), rgba(204, 0, 0, 0.6));
    border: 3px solid #ff6600;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.title-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6600, transparent, #ff6600);
    z-index: -1;
    opacity: 0.3;
    animation: borderPulse 3s infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.title-block h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ff6600;
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.8), 3px 3px 6px rgba(0, 0, 0, 0.9);
    font-weight: 700;
    letter-spacing: 6px;
}

.title-block p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 1px;
}

.warning-block {
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.3), rgba(153, 0, 0, 0.3));
    border: 3px solid #ff3300;
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
}

.warning-block h2 {
    font-size: 2.8rem;
    color: #ff3300;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 51, 0, 0.7);
    font-weight: 700;
    letter-spacing: 3px;
}

.warning-entry {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    border-left: 6px solid #ff6600;
}

.warning-entry strong {
    color: #ff6600;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.warning-entry p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.game-display {
    background: linear-gradient(135deg, rgba(102, 0, 0, 0.8), rgba(51, 0, 0, 0.8));
    border: 4px solid #ff6600;
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 15px 50px rgba(255, 102, 0, 0.4);
}

.game-display h2 {
    font-size: 3rem;
    color: #ff6600;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 25px rgba(255, 102, 0, 0.8);
    font-weight: 700;
    letter-spacing: 4px;
}

.game-display p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.game-frame {
    width: 100%;
    max-width: 850px;
    height: 680px;
    border: none;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.5);
}

.text-section {
    background: linear-gradient(135deg, rgba(51, 0, 0, 0.7), rgba(26, 0, 0, 0.7));
    border: 2px solid rgba(255, 102, 0, 0.4);
    border-radius: 12px;
    padding: 3rem;
    margin: 2.5rem 0;
}

.text-section h2 {
    font-size: 2.8rem;
    color: #ff6600;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.6);
    font-weight: 700;
    letter-spacing: 3px;
}

.text-section h3 {
    font-size: 2rem;
    color: #ff9955;
    margin: 2rem 0 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.text-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.text-section ul {
    padding-left: 2.5rem;
    margin: 1.5rem 0;
}

.text-section li {
    margin: 1rem 0;
    font-size: 1.2rem;
}

.footer-area {
    background: linear-gradient(135deg, #660000, #330000);
    border-top: 4px solid #ff6600;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ff6600;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.footer-links a:hover {
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.9);
    color: #ff9955;
}

.footer-area p {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-inner {
    background: linear-gradient(135deg, #330000, #660000);
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
    max-width: 650px;
    border: 4px solid #ff6600;
    box-shadow: 0 25px 80px rgba(255, 102, 0, 0.6);
}

.age-modal-inner h2 {
    font-size: 3rem;
    color: #ff6600;
    margin-bottom: 2rem;
    text-shadow: 0 0 25px rgba(255, 102, 0, 0.9);
    font-weight: 700;
    letter-spacing: 4px;
}

.age-modal-inner p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    letter-spacing: 1px;
}

.age-modal-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-modal-btn {
    padding: 1.3rem 4rem;
    font-size: 1.4rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Teko', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 3px;
}

.age-modal-btn.yes {
    background: linear-gradient(135deg, #ff6600, #cc0000);
    color: #fff;
    border: 3px solid #ff6600;
}

.age-modal-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 102, 0, 0.7);
}

.age-modal-btn.no {
    background: rgba(80, 0, 0, 0.8);
    color: #ffccaa;
    border: 3px solid #800000;
}

.age-modal-btn.no:hover {
    background: rgba(80, 0, 0, 1);
}

@media (max-width: 968px) {
    .menu-btn {
        display: block;
    }

    .navigation ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 120px;
        right: 0;
        background: rgba(51, 0, 0, 0.98);
        width: 80%;
        max-width: 350px;
        height: calc(100vh - 120px);
        padding: 2rem;
        box-shadow: -5px 0 30px rgba(255, 102, 0, 0.4);
        gap: 1rem;
    }

    .navigation ul.show {
        display: flex;
    }

    .title-block h1 {
        font-size: 2.8rem;
    }

    .game-frame {
        height: 480px;
    }

    .age-modal-inner {
        margin: 1rem;
        padding: 3rem;
    }

    .age-modal-actions {
        flex-direction: column;
    }

    .brand-label {
        font-size: 2.2rem;
    }
}
