* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: gateIn 0.3s ease;
}

.age-gate-overlay.hidden {
    display: none;
}

@keyframes gateIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.age-gate-panel {
    background: #1a1a1a;
    border: 3px solid #dc2626;
    padding: 60px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.5);
    animation: panelSlide 0.5s ease;
}

@keyframes panelSlide {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gate-symbol {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #dc2626;
}

.age-gate-panel h2 {
    color: #dc2626;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.gate-text {
    color: #cccccc;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.gate-subtext {
    color: #888888;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.gate-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gate-enter,
.gate-exit {
    padding: 16px 45px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.gate-enter {
    background: #dc2626;
    color: #000000;
}

.gate-enter:hover {
    background: #ef4444;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
}

.gate-exit {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.gate-exit:hover {
    background: rgba(220, 38, 38, 0.1);
}

.top-bar {
    background: #000000;
    border-bottom: 3px solid #dc2626;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc2626;
    letter-spacing: 3px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-burger span {
    width: 30px;
    height: 3px;
    background: #dc2626;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.link-item {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.link-item::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s ease;
}

.link-item:hover {
    color: #dc2626;
}

.link-item:hover::before {
    width: 100%;
}

.splash-section {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%),
                repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(220, 38, 38, 0.05) 10px, rgba(220, 38, 38, 0.05) 20px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.splash-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 5px solid #dc2626;
    pointer-events: none;
}

.splash-overlay h1 {
    font-size: 5rem;
    color: #dc2626;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
}

.splash-tag {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}

.splash-btn {
    display: inline-block;
    padding: 18px 60px;
    background: #dc2626;
    color: #000000;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
}

.splash-btn:hover {
    background: transparent;
    color: #dc2626;
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.intro-section {
    background: #0a0a0a;
    border-top: 3px solid #dc2626;
    border-bottom: 3px solid #dc2626;
}

.intro-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 30px;
}

.intro-lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #cccccc;
    text-align: center;
}

.pillars-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0;
    background: #000000;
}

.pillar {
    background: #1a1a1a;
    padding: 60px 40px;
    text-align: center;
    border: 2px solid #dc2626;
    transition: all 0.3s ease;
}

.pillar:hover {
    background: #dc2626;
    color: #000000;
}

.pillar:hover .pillar-number {
    color: #000000;
}

.pillar-number {
    font-size: 3rem;
    color: #dc2626;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.pillar h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #dc2626;
}

.pillar:hover h3 {
    color: #000000;
}

.pillar p {
    color: #cccccc;
    line-height: 1.7;
}

.pillar:hover p {
    color: #000000;
}

.game-section {
    background: #0a0a0a;
    border-top: 3px solid #dc2626;
    border-bottom: 3px solid #dc2626;
}

.game-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 15px;
}

.section-lead {
    text-align: center;
    color: #888888;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.game-embed-box {
    max-width: 1000px;
    margin: 0 auto;
    border: 3px solid #dc2626;
    background: #000000;
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
}

.power-section {
    background: #000000;
}

.power-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 50px;
}

.power-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.power-card {
    background: #1a1a1a;
    border-left: 4px solid #dc2626;
    padding: 35px;
    transition: all 0.3s ease;
}

.power-card:hover {
    background: #222222;
    transform: translateX(5px);
}

.power-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.power-card h4 {
    color: #dc2626;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.power-card p {
    color: #cccccc;
    line-height: 1.7;
}

.critical-section {
    background: #0a0a0a;
    border-top: 3px solid #dc2626;
    border-bottom: 3px solid #dc2626;
}

.critical-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 40px;
}

.critical-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.critical-box {
    background: #000000;
    border: 2px solid #dc2626;
    padding: 35px;
}

.critical-box h4 {
    color: #dc2626;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.critical-box p {
    color: #cccccc;
    line-height: 1.8;
}

.manifesto-section {
    background: #000000;
}

.manifesto-section h2 {
    text-align: center;
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 35px;
}

.manifesto-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #cccccc;
    margin-bottom: 25px;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    background: #000000;
    border-top: 3px solid #dc2626;
    border-bottom: 3px solid #dc2626;
}

.stat-item {
    text-align: center;
    padding: 60px 30px;
    background: #1a1a1a;
    border: 2px solid #dc2626;
}

.stat-value {
    font-size: 4rem;
    color: #dc2626;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: #888888;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}

.play-hero {
    background: linear-gradient(135deg, #dc2626 0%, #000000 100%);
    padding: 80px 40px;
    text-align: center;
    border-bottom: 3px solid #dc2626;
}

.play-hero h1 {
    font-size: 3.5rem;
    color: #000000;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 #dc2626;
}

.play-hero p {
    font-size: 1.3rem;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}

.play-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    background: #000000;
}

.spec-box {
    background: #1a1a1a;
    padding: 40px;
    border: 2px solid #dc2626;
    text-align: center;
}

.spec-box h4 {
    color: #dc2626;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.spec-box p {
    color: #cccccc;
    line-height: 1.7;
}

.play-zone {
    background: #0a0a0a;
    padding: 60px 40px;
}

.game-box {
    max-width: 1200px;
    margin: 0 auto;
    border: 3px solid #dc2626;
    background: #000000;
}

.game-window {
    width: 100%;
    height: 750px;
    border: none;
}

.play-notice {
    background: #000000;
    border-top: 3px solid #dc2626;
    padding: 60px 40px;
    text-align: center;
}

.play-notice h3 {
    color: #dc2626;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.play-notice p {
    color: #cccccc;
    font-size: 1.2rem;
    line-height: 1.8;
}

.legal-section {
    background: #000000;
    min-height: 100vh;
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-wrapper h1 {
    font-size: 3.5rem;
    color: #dc2626;
    margin-bottom: 10px;
}

.legal-date {
    color: #666666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-wrapper h2 {
    font-size: 2rem;
    color: #dc2626;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-wrapper p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-wrapper ul {
    margin-left: 40px;
    margin-bottom: 20px;
    color: #cccccc;
}

.legal-wrapper li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.site-footer {
    background: #000000;
    border-top: 3px solid #dc2626;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #dc2626;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col p {
    color: #888888;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #dc2626;
}

.footer-bar {
    background: #0a0a0a;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #dc2626;
}

.footer-bar p {
    color: #666666;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: calc(100vh - 80px);
        background: #1a1a1a;
        flex-direction: column;
        padding: 40px;
        gap: 25px;
        transition: right 0.3s ease;
        border-left: 3px solid #dc2626;
    }

    .nav-links.active {
        right: 0;
    }

    .splash-overlay h1 {
        font-size: 3rem;
    }

    .splash-tag {
        font-size: 1.2rem;
    }

    .section-container {
        padding: 50px 25px;
    }

    .game-embed {
        height: 450px;
    }

    .game-window {
        height: 500px;
    }

    .legal-wrapper {
        padding: 40px 25px;
    }

    .legal-wrapper h1 {
        font-size: 2.5rem;
    }

    .age-gate-panel {
        padding: 40px 30px;
        margin: 20px;
    }

    .gate-actions {
        flex-direction: column;
        gap: 15px;
    }

    .gate-enter,
    .gate-exit {
        width: 100%;
    }
}