* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #1a0a0f;
    color: #f5e6e8;
    min-height: 100vh;
    line-height: 1.7;
}

.top-bar {
    background: linear-gradient(90deg, #8b1538, #a91d3a);
    padding: 20px 0;
    box-shadow: 0 3px 15px rgba(139, 21, 56, 0.4);
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-bar-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.brand-icon {
    width: 54px;
    height: 54px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 900;
    color: #8b1538;
    transform: rotate(-5deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brand-text {
    font-size: 29px;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
}

.main-menu {
    display: flex;
    gap: 36px;
}

.main-menu a {
    color: #ffd6d6;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.main-menu a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

.intro-section {
    padding: 95px 32px;
    text-align: center;
    background: linear-gradient(135deg, #2a0f16 0%, #1a0a0f 100%);
    border-bottom: 3px solid #8b1538;
}

.intro-section h1 {
    font-size: 62px;
    font-weight: 900;
    color: #ff6b6b;
    margin-bottom: 26px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-description {
    font-size: 22px;
    color: #d4a5a5;
    max-width: 860px;
    margin: 0 auto 48px;
    font-weight: 400;
}

.cta-link {
    display: inline-block;
    background: linear-gradient(135deg, #8b1538, #c41e3a);
    color: white;
    padding: 19px 52px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(139, 21, 56, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.7);
}

.content-block {
    padding: 82px 32px;
}

.block-title {
    font-size: 48px;
    font-weight: 900;
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 58px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(305px, 1fr));
    gap: 38px;
    max-width: 1280px;
    margin: 0 auto;
}

.highlight-card {
    background: linear-gradient(135deg, #2a0f16 0%, #1f0c12 100%);
    padding: 45px 38px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(139, 21, 56, 0.4);
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: #8b1538;
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.5);
}

.highlight-symbol {
    font-size: 54px;
    margin-bottom: 24px;
}

.highlight-card h3 {
    font-size: 25px;
    color: #ff6b6b;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.highlight-card p {
    font-size: 16px;
    color: #d4a5a5;
    line-height: 1.75;
}

.warning-section {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.2), rgba(196, 30, 58, 0.2));
    border: 3px solid #8b1538;
    border-radius: 12px;
    padding: 45px;
    margin: 62px auto;
    max-width: 1080px;
}

.warning-section h3 {
    font-size: 30px;
    color: #ff6b6b;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-section ul {
    list-style: none;
    padding: 0;
}

.warning-section li {
    padding: 18px 0;
    padding-left: 38px;
    position: relative;
    font-size: 17px;
    color: #f5e6e8;
}

.warning-section li:before {
    content: "►";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-size: 18px;
    font-weight: bold;
}

.game-container {
    background: linear-gradient(135deg, #2a0f16 0%, #1f0c12 100%);
    border: 3px solid #8b1538;
    border-radius: 12px;
    padding: 45px;
    margin: 62px auto;
    max-width: 1380px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.game-container iframe {
    width: 100%;
    height: 820px;
    border: none;
    border-radius: 8px;
}

.site-footer {
    background: #0f0508;
    padding: 68px 32px 40px;
    margin-top: 95px;
    border-top: 3px solid #8b1538;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd6d6;
}

.footer-text {
    color: #8b7074;
    font-size: 14px;
}

.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 10, 15, 0.97);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.age-overlay.shown {
    display: flex;
}

.age-dialog {
    background: linear-gradient(135deg, #2a0f16, #1f0c12);
    border: 4px solid #8b1538;
    border-radius: 16px;
    padding: 58px 52px;
    text-align: center;
    max-width: 590px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.6);
}

.age-dialog h2 {
    font-size: 37px;
    color: #ff6b6b;
    margin-bottom: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-dialog p {
    font-size: 18px;
    color: #f5e6e8;
    margin-bottom: 35px;
    line-height: 1.75;
}

.age-options {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.age-option {
    padding: 18px 46px;
    font-size: 18px;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-confirm {
    background: linear-gradient(135deg, #8b1538, #c41e3a);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
}

.age-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(139, 21, 56, 0.6);
}

.age-reject {
    background: #3a2429;
    color: #d4a5a5;
}

.age-reject:hover {
    background: #4a343a;
}

.text-content {
    max-width: 1180px;
    margin: 0 auto;
    padding: 88px 32px;
}

.text-content h1 {
    font-size: 52px;
    color: #ff6b6b;
    margin-bottom: 38px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-content h2 {
    font-size: 35px;
    color: #c41e3a;
    margin-top: 52px;
    margin-bottom: 26px;
    font-weight: 800;
}

.text-content p {
    font-size: 17px;
    color: #f5e6e8;
    margin-bottom: 26px;
    line-height: 1.85;
}

.text-content ul, .text-content ol {
    margin-left: 40px;
    margin-bottom: 26px;
}

.text-content li {
    margin-bottom: 15px;
    color: #f5e6e8;
    font-size: 17px;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-menu {
        position: fixed;
        top: 94px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #8b1538, #a91d3a);
        flex-direction: column;
        padding: 40px 32px;
        gap: 32px;
        transition: left 0.4s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    .main-menu.visible {
        left: 0;
    }

    .intro-section h1 {
        font-size: 42px;
    }

    .intro-description {
        font-size: 19px;
    }

    .block-title {
        font-size: 36px;
    }

    .highlights {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .age-dialog {
        margin: 30px;
        padding: 45px 32px;
    }

    .age-options {
        flex-direction: column;
    }

    .game-container iframe {
        height: 600px;
    }

    .text-content h1 {
        font-size: 40px;
    }

    .text-content h2 {
        font-size: 29px;
    }
}
