* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.65;
    color: #fafafa;
    background: #1a0000;
    background-image: 
        radial-gradient(ellipse at top, rgba(185, 28, 28, 0.15), transparent 50%),
        radial-gradient(ellipse at bottom, rgba(220, 38, 38, 0.1), transparent 50%);
    min-height: 100vh;
}

.wrap {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.page-header {
    background: rgba(60, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #DC2626;
    padding: 1.3rem 0;
}

.header-container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: #DC2626;
    letter-spacing: 1px;
}

.desktop-menu {
    display: none;
    gap: 2.8rem;
}

.desktop-menu a {
    color: #fafafa;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.desktop-menu a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #FBBF24;
    transition: width 0.3s;
}

.desktop-menu a:hover {
    color: #FBBF24;
}

.desktop-menu a:hover::before {
    width: 100%;
}

.mobile-burger {
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-burger span {
    width: 32px;
    height: 4px;
    background: #DC2626;
    transition: all 0.3s;
    border-radius: 4px;
}

.mobile-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-burger.active span:nth-child(2) {
    opacity: 0;
}

.mobile-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(60, 0, 0, 0.98);
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    padding: 3rem;
    gap: 1.5rem;
    z-index: 999;
    border-bottom: 2px solid #DC2626;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #fafafa;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 25px;
    border-radius: 12px;
    transition: all 0.3s;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.mobile-menu a:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: #DC2626;
    color: #FBBF24;
}

.hero-section {
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    color: #DC2626;
    margin-bottom: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.hero-lead {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.primary-cta {
    display: inline-block;
    padding: 20px 55px;
    background: linear-gradient(135deg, #B91C1C 0%, #DC2626 100%);
    color: #FBBF24;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    border: 3px solid #DC2626;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

.primary-cta:hover {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.6);
}

.features-section {
    padding: 80px 0;
}

.features-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-card {
    background: rgba(60, 0, 0, 0.5);
    padding: 50px 40px;
    border-radius: 16px;
    border: 2px solid rgba(220, 38, 38, 0.4);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #DC2626;
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.8rem;
}

.feature-card h3 {
    color: #FBBF24;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.game-display {
    padding: 80px 0;
}

.game-display h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #DC2626;
    margin-bottom: 1.2rem;
    font-weight: 900;
}

.section-intro {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 1.15rem;
}

.game-frame-wrapper {
    max-width: 1150px;
    margin: 0 auto;
    background: rgba(60, 0, 0, 0.7);
    padding: 30px;
    border-radius: 16px;
    border: 3px solid #DC2626;
}

.game-iframe {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 12px;
}

.important-notice {
    padding: 80px 0;
}

.notice-card {
    background: rgba(139, 0, 0, 0.2);
    border: 3px solid #DC2626;
    border-radius: 16px;
    padding: 45px;
}

.notice-card h3 {
    color: #FBBF24;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.notice-item {
    background: rgba(60, 0, 0, 0.4);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #DC2626;
}

.advantages {
    padding: 80px 0;
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #DC2626;
    margin-bottom: 4rem;
    font-weight: 900;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.advantage-block {
    background: rgba(60, 0, 0, 0.4);
    padding: 40px;
    border-radius: 16px;
    border-right: 5px solid #FBBF24;
}

.adv-label {
    font-size: 3rem;
    font-weight: 900;
    color: #DC2626;
    display: block;
    margin-bottom: 1.5rem;
}

.advantage-block h4 {
    color: #FBBF24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.platform-story {
    padding: 80px 0;
}

.story-content {
    background: rgba(60, 0, 0, 0.5);
    padding: 60px;
    border-radius: 16px;
    border: 2px solid rgba(220, 38, 38, 0.4);
}

.story-content h2 {
    color: #DC2626;
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    font-weight: 900;
}

.story-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-footer {
    background: rgba(60, 0, 0, 0.95);
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 2px solid #DC2626;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block h4 {
    color: #DC2626;
    margin-bottom: 1.3rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-block a {
    color: #fafafa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #FBBF24;
}

.footer-base {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: linear-gradient(135deg, #3c0000 0%, #B91C1C 100%);
    padding: 50px;
    border-radius: 20px;
    max-width: 550px;
    text-align: center;
    border: 3px solid #DC2626;
    box-shadow: 0 20px 70px rgba(220, 38, 38, 0.5);
    margin: 20px;
}

.age-symbol {
    font-size: 5rem;
    margin-bottom: 1.8rem;
}

.age-box h2 {
    color: #DC2626;
    margin-bottom: 1.8rem;
    font-size: 2.2rem;
    font-weight: 900;
}

.age-box p {
    margin-bottom: 3rem;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-yes,
.age-no {
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-yes {
    background: #DC2626;
    color: #FBBF24;
    border: 3px solid #DC2626;
}

.age-yes:hover {
    background: #EF4444;
    transform: scale(1.08);
}

.age-no {
    background: #7f1d1d;
    color: #fafafa;
    border: 3px solid #7f1d1d;
}

.age-no:hover {
    background: #991b1b;
    transform: scale(1.08);
}

.play-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.play-hero h1 {
    font-size: 3rem;
    color: #DC2626;
    margin-bottom: 1.8rem;
    font-weight: 900;
}

.gameplay-section {
    padding: 40px 0 80px;
}

.play-info-panel {
    background: rgba(60, 0, 0, 0.5);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 2px solid rgba(220, 38, 38, 0.4);
}

.play-info-panel h3 {
    color: #FBBF24;
    margin-bottom: 1.8rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.info-points {
    list-style: none;
    margin-left: 0;
}

.info-points li {
    margin-bottom: 1.2rem;
    padding-left: 2.5rem;
    position: relative;
}

.info-points li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: #DC2626;
    font-size: 1.4rem;
}

.play-game-wrapper {
    max-width: 1250px;
    margin: 0 auto 40px;
    background: rgba(60, 0, 0, 0.7);
    padding: 30px;
    border-radius: 16px;
    border: 3px solid #DC2626;
}

.play-game-frame {
    width: 100%;
    height: 780px;
    border: none;
    border-radius: 12px;
}

.play-disclaimer {
    text-align: center;
    padding: 30px;
    background: rgba(139, 0, 0, 0.2);
    border: 2px solid #DC2626;
    border-radius: 12px;
    max-width: 950px;
    margin: 0 auto;
}

.legal-container {
    padding: 80px 0;
}

.legal-container h1 {
    font-size: 3rem;
    color: #DC2626;
    margin-bottom: 1.8rem;
    font-weight: 900;
}

.legal-summary {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.legal-body {
    background: rgba(60, 0, 0, 0.4);
    padding: 50px;
    border-radius: 16px;
    border: 2px solid rgba(220, 38, 38, 0.4);
}

.legal-body h2 {
    color: #DC2626;
    font-size: 1.7rem;
    margin-top: 3rem;
    margin-bottom: 1.3rem;
    font-weight: 700;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    color: #FBBF24;
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1.1rem;
    font-weight: 700;
}

.legal-body p {
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.legal-body ul {
    margin-bottom: 1.3rem;
    margin-left: 3rem;
}

.legal-body li {
    margin-bottom: 0.8rem;
}

.terms-recap,
.privacy-summary,
.key-disclaimers {
    background: rgba(220, 38, 38, 0.15);
    padding: 35px;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 6px solid #DC2626;
}

.alert-box {
    background: rgba(220, 38, 38, 0.25);
    border: 3px solid #DC2626;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.alert-box h2 {
    margin-top: 0;
}

.closing-statement {
    background: rgba(220, 38, 38, 0.15);
    padding: 35px;
    border-radius: 12px;
    margin-top: 3rem;
    border: 3px solid #DC2626;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
    
    .mobile-burger {
        display: none;
    }
    
    .features-flex {
        flex-direction: row;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notice-content {
        flex-direction: row;
    }
    
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-section h1 {
        font-size: 4rem;
    }
    
    .game-iframe {
        height: 780px;
    }
    
    .play-game-frame {
        height: 880px;
    }
}

@media (max-width: 767px) {
    .age-buttons {
        flex-direction: column;
    }
    
    .age-yes,
    .age-no {
        width: 100%;
    }
}
