* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Metal Mania', cursive;
    background: #0d0d0d;
    color: #e0e0e0;
    line-height: 1.7;
}

.content-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Modal Overlay for Age Gate */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a0000, #2d1414);
    padding: 50px 60px;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #ff4500;
    box-shadow: 0 0 60px rgba(255, 69, 0, 0.5);
}

.modal-skull {
    font-size: 5em;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.modal-content h2 {
    font-size: 2.5em;
    color: #ff4500;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.8);
}

.modal-content p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.modal-warning {
    font-weight: bold;
    color: #ffaa00;
}

.modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
}

.modal-actions button {
    font-family: 'Metal Mania', cursive;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-enter {
    background: linear-gradient(135deg, #ff4500, #ff6600);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.4);
}

.btn-enter:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.6);
}

.btn-exit {
    background: linear-gradient(135deg, #666, #444);
    color: white;
}

/* Header */
.main-header {
    background: linear-gradient(180deg, #1a0000, #0d0d0d);
    border-bottom: 3px solid #ff4500;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    font-size: 2.5em;
}

.brand h1 {
    font-size: 2.5em;
    color: #ff4500;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
}

.brand-subtitle {
    font-size: 0.9em;
    color: #ffaa00;
    align-self: flex-end;
    margin-bottom: 8px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-burger span {
    width: 30px;
    height: 3px;
    background: #ff4500;
    margin: 4px 0;
    transition: 0.3s;
}

.main-nav {
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 5px;
}

.main-nav a:hover,
.main-nav a.nav-active {
    color: #ff4500;
    background: rgba(255, 69, 0, 0.2);
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0000, #2d1414, #1a0000);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, rgba(0,0,0,0.7));
}

.hero-section .content-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
}

.flame-text {
    font-size: 3.5em;
    color: #ff4500;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.9), 0 0 60px rgba(255, 69, 0, 0.6);
    margin-bottom: 30px;
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

.hero-desc {
    font-size: 1.4em;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #ccc;
}

.warning-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.warning-badge {
    background: rgba(255, 69, 0, 0.2);
    border: 2px solid #ff4500;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.warning-badge span {
    font-size: 2.5em;
}

.warning-badge strong {
    color: #ffaa00;
    font-size: 1.1em;
}

/* Manifesto Section */
.manifesto-section {
    padding: 80px 0;
    background: #0d0d0d;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.manifesto-card {
    background: linear-gradient(135deg, #1a0000, #2d1414);
    border: 2px solid #ff4500;
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s;
}

.manifesto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.4);
}

.skull-number {
    font-size: 4em;
    margin-bottom: 20px;
}

.manifesto-card h3 {
    font-size: 1.8em;
    color: #ff4500;
    margin-bottom: 20px;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #0d0d0d, #1a0000);
}

.section-heading {
    font-size: 3em;
    color: #ff4500;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 25px rgba(255, 69, 0, 0.8);
}

.section-subheading {
    text-align: center;
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #ccc;
}

.game-frame {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #ff4500;
    box-shadow: 0 10px 50px rgba(255, 69, 0, 0.4);
    margin-bottom: 40px;
}

.game-frame iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 69, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ff4500;
}

.spec-icon {
    font-size: 2.5em;
}

.spec-item strong {
    display: block;
    color: #ffaa00;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.spec-item p {
    color: #ccc;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: #0d0d0d;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.philosophy-text p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.philosophy-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    background: linear-gradient(135deg, #1a0000, #2d1414);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ff4500;
}

.stat-value {
    font-size: 4em;
    color: #ff4500;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.8);
    font-weight: bold;
}

.stat-label {
    font-size: 1.2em;
    color: #ffaa00;
    margin-top: 10px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0d0d0d, #1a0000);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-box {
    background: rgba(45, 20, 20, 0.6);
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid #ff4500;
    transition: all 0.3s;
}

.feature-box:hover {
    background: rgba(45, 20, 20, 0.8);
    transform: translateX(10px);
}

.feature-box h3 {
    font-size: 1.8em;
    color: #ff4500;
    margin-bottom: 15px;
}

/* Play Page Specific */
.play-intro {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a0000, #2d1414);
}

.play-intro p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto;
}

.play-area {
    padding: 50px 0;
    background: #0d0d0d;
}

.play-instructions {
    padding: 60px 0;
    background: linear-gradient(180deg, #0d0d0d, #1a0000);
}

.play-instructions h3 {
    font-size: 2.5em;
    color: #ff4500;
    margin-bottom: 40px;
    text-align: center;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.instruction-item {
    background: rgba(45, 20, 20, 0.6);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff4500;
}

.instruction-item strong {
    display: block;
    color: #ffaa00;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.critical-reminder {
    background: rgba(255, 69, 0, 0.2);
    border: 3px solid #ff4500;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2em;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    background: #0d0d0d;
}

.page-title {
    font-size: 3.5em;
    color: #ff4500;
    margin-bottom: 15px;
    text-shadow: 0 0 25px rgba(255, 69, 0, 0.8);
}

.effective-date {
    color: #999;
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 50px;
}

.legal-article {
    background: rgba(45, 20, 20, 0.4);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 35px;
    border-left: 5px solid #ff4500;
}

.legal-article h3 {
    font-size: 1.8em;
    color: #ff4500;
    margin-bottom: 20px;
}

.legal-article p,
.legal-article ul {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.legal-article ul {
    padding-left: 40px;
}

.legal-article li {
    margin-bottom: 12px;
}

.legal-article.critical {
    border: 3px solid #ff4500;
    background: rgba(255, 69, 0, 0.15);
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #1a0000, #0d0d0d);
    border-top: 3px solid #ff4500;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: #ff4500;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1em;
}

.footer-col a:hover {
    color: #ff4500;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 69, 0, 0.3);
    color: #999;
    font-size: 1.1em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a0000;
        flex-direction: column;
        padding: 20px;
        border-top: 3px solid #ff4500;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 69, 0, 0.3);
    }

    .brand h1 {
        font-size: 1.8em;
    }

    .flame-text {
        font-size: 2em;
    }

    .hero-desc {
        font-size: 1.1em;
    }

    .section-heading {
        font-size: 2em;
    }

    .game-frame iframe {
        height: 400px;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
    }

    .manifesto-grid,
    .features-grid,
    .instructions-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px 25px;
        margin: 20px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .content-wrap {
        padding: 0 20px;
    }
}
