* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(to bottom, #1a0a0a, #2d0d0d, #1a0a0a);
    color: #ececec;
    line-height: 1.7;
}

.wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.site-header {
    background: linear-gradient(to bottom, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1));
    border-bottom: 2px solid #dc2626;
    position: sticky;
    top: 0;
    z-index: 700;
    backdrop-filter: blur(8px);
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 26px;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 3px;
}

.site-logo svg {
    filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.7));
}

.main-nav {
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: #ececec;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ef4444;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ef4444;
    border-radius: 2px;
    transition: all 0.3s;
}

.hero {
    padding: 120px 0;
}

.hero-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-wrap h1 {
    font-size: 72px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 15px;
}

.hero-lead {
    font-size: 32px;
    color: #d0d0d0;
    margin-bottom: 35px;
}

.hero-desc {
    font-size: 19px;
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #b0b0b0;
}

.essentials {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.4);
}

.essentials h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 90px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.card {
    background: rgba(26, 10, 10, 0.8);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-1 {
    border-color: #dc2626;
}

.card-2 {
    border-color: #ef4444;
}

.card-3 {
    border-color: #f87171;
}

.card-icon {
    font-size: 60px;
    margin-bottom: 25px;
}

.card h3 {
    font-size: 28px;
    color: #ef4444;
    margin-bottom: 20px;
    font-weight: 700;
}

.card p {
    color: #d0d0d0;
    line-height: 1.9;
    font-size: 17px;
}

.gaming {
    padding: 120px 0;
}

.gaming-intro {
    text-align: center;
    margin-bottom: 70px;
}

.gaming-intro h2 {
    font-size: 52px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 20px;
}

.gaming-intro p {
    font-size: 22px;
    color: #d0d0d0;
}

.gaming-wrapper {
    max-width: 1500px;
    margin: 0 auto 60px;
    background: rgba(26, 10, 10, 0.9);
    border: 3px solid #dc2626;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(220, 38, 38, 0.4);
}

.gaming-iframe {
    width: 100%;
    height: 760px;
    border: none;
    display: block;
}

.gaming-meta {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.meta-item {
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid #dc2626;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
}

.meta-key {
    display: block;
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 10px;
}

.meta-val {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #ef4444;
}

.value-props {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.4);
}

.value-props h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 90px;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 45px;
}

.prop {
    background: rgba(26, 10, 10, 0.6);
    border: 2px solid rgba(220, 38, 38, 0.4);
    border-radius: 18px;
    padding: 40px;
    transition: all 0.3s;
}

.prop:hover {
    border-color: #dc2626;
    background: rgba(26, 10, 10, 0.9);
}

.prop-label {
    font-size: 64px;
    font-weight: 700;
    color: rgba(239, 68, 68, 0.3);
    margin-bottom: 20px;
}

.prop h3 {
    font-size: 26px;
    color: #ef4444;
    margin-bottom: 18px;
    font-weight: 700;
}

.prop p {
    color: #d0d0d0;
    line-height: 1.9;
    font-size: 17px;
}

.manifesto {
    padding: 120px 0;
}

.manifesto-content h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 70px;
}

.manifesto-text {
    max-width: 1200px;
    margin: 0 auto;
}

.manifesto-text p {
    font-size: 19px;
    color: #d0d0d0;
    margin-bottom: 30px;
    line-height: 1.9;
}

.site-footer {
    background: rgba(26, 10, 10, 0.95);
    border-top: 2px solid #dc2626;
    padding: 90px 0 40px;
    margin-top: 120px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #ef4444;
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-col p {
    color: #d0d0d0;
    margin-bottom: 22px;
    line-height: 1.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: #ececec;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ef4444;
}

.footer-base {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    color: #888;
    font-size: 16px;
}

.age-prompt {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9000;
}

.age-prompt.hidden {
    display: none;
}

.prompt-card {
    background: linear-gradient(135deg, #1a0a0a, #2d0d0d);
    border: 3px solid #dc2626;
    border-radius: 26px;
    padding: 70px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(220, 38, 38, 0.5);
}

.prompt-icon {
    font-size: 86px;
    margin-bottom: 32px;
}

.prompt-card h2 {
    color: #ef4444;
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 700;
}

.prompt-card p {
    color: #d0d0d0;
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.prompt-actions {
    display: flex;
    gap: 24px;
    margin-top: 48px;
}

.prompt-btn {
    flex: 1;
    padding: 22px 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 19px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.prompt-btn.confirm {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.prompt-btn.confirm:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(220, 38, 38, 0.5);
}

.prompt-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: #ececec;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.prompt-btn.decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.page-head {
    padding: 90px 0 70px;
    text-align: center;
}

.page-head h1 {
    font-size: 60px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 20px;
}

.page-head p {
    font-size: 24px;
    color: #d0d0d0;
}

.doc-date {
    color: #888;
    font-size: 18px;
}

.play-guide {
    padding: 70px 0;
}

.play-guide h2 {
    text-align: center;
    font-size: 44px;
    color: #ef4444;
    margin-bottom: 60px;
}

.guide-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.guide-tile {
    background: rgba(26, 10, 10, 0.6);
    border: 2px solid rgba(220, 38, 38, 0.4);
    border-radius: 16px;
    padding: 38px;
    display: flex;
    gap: 24px;
}

.guide-icon {
    font-size: 52px;
    flex-shrink: 0;
}

.guide-text h3 {
    color: #ef4444;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.guide-text p {
    color: #d0d0d0;
    line-height: 1.8;
    font-size: 16px;
}

.play-zone {
    padding: 70px 0;
}

.play-box {
    max-width: 1500px;
    margin: 0 auto;
    background: rgba(26, 10, 10, 0.9);
    border: 3px solid #dc2626;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(220, 38, 38, 0.4);
}

.play-embed {
    width: 100%;
    height: 760px;
    border: none;
    display: block;
}

.play-alerts {
    padding: 70px 0 120px;
}

.alerts-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(220, 38, 38, 0.2);
    border: 3px solid #dc2626;
    border-radius: 22px;
    padding: 55px;
}

.alerts-container h3 {
    color: #ef4444;
    font-size: 32px;
    margin-bottom: 38px;
    font-weight: 700;
}

.alert-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.alert-item {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.8;
}

.alert-item strong {
    color: #ef4444;
}

.doc-body {
    padding: 70px 0 120px;
}

.doc-wrap {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(26, 10, 10, 0.7);
    border: 2px solid rgba(220, 38, 38, 0.4);
    border-radius: 22px;
    padding: 70px;
}

.doc-wrap h2 {
    color: #ef4444;
    font-size: 38px;
    margin: 60px 0 30px 0;
    font-weight: 700;
}

.doc-wrap h2:first-child {
    margin-top: 0;
}

.doc-wrap h3 {
    color: #ef4444;
    font-size: 30px;
    margin: 45px 0 24px 0;
    font-weight: 600;
}

.doc-wrap p {
    color: #d0d0d0;
    line-height: 1.9;
    margin-bottom: 24px;
    font-size: 18px;
}

.doc-wrap ul {
    color: #d0d0d0;
    margin: 24px 0 24px 42px;
    line-height: 1.9;
}

.doc-wrap li {
    margin-bottom: 16px;
}

.doc-notice,
.doc-summary {
    background: rgba(220, 38, 38, 0.25);
    border: 3px solid #dc2626;
    border-radius: 16px;
    padding: 38px;
    margin-top: 60px;
}

.urgent-notice {
    background: rgba(220, 38, 38, 0.3);
    border: 3px solid #dc2626;
    border-radius: 16px;
    padding: 38px;
    margin-bottom: 60px;
    text-align: center;
}

.urgent-notice h2 {
    color: #f87171;
    margin-bottom: 24px;
}

.doc-final {
    background: rgba(220, 38, 38, 0.35);
    border: 4px solid #dc2626;
    border-radius: 18px;
    padding: 45px;
    margin-top: 70px;
    text-align: center;
}

.doc-final p {
    font-size: 22px;
    font-weight: 700;
    color: #ef4444;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 10, 10, 0.98);
        flex-direction: column;
        padding: 32px;
        gap: 28px;
        border-top: 2px solid #dc2626;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
    }
    
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero-wrap h1 {
        font-size: 48px;
    }
    
    .hero-lead {
        font-size: 26px;
    }
    
    .gaming-iframe,
    .play-embed {
        height: 570px;
    }
    
    .gaming-meta {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prompt-card {
        margin: 20px;
        padding: 50px;
    }
    
    .prompt-actions {
        flex-direction: column;
    }
    
    .doc-wrap {
        padding: 50px 32px;
    }
    
    .page-head h1 {
        font-size: 44px;
    }
}
