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

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Creepster', cursive;
    letter-spacing: 2px;
}

.top-nav {
    background: linear-gradient(180deg, #1a0000 0%, #330000 100%);
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #8b0000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Creepster', cursive;
    font-size: 2rem;
    color: #ff4444;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.8);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: #ff4444;
    display: block;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    background: rgba(139, 0, 0, 0.5);
    color: #ff4444;
}

.nav-links a.active {
    background: #8b0000;
    color: #fff;
}

.hero-banner {
    background: linear-gradient(135deg, #1a0000 0%, #330000 50%, #1a0000 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" opacity="0.1">🦇</text></svg>');
    background-size: cover;
    padding: 8rem 2rem;
    text-align: center;
    border-bottom: 5px solid #8b0000;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.3), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: #ff4444;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.8), 0 0 40px rgba(139, 0, 0, 0.6);
}

.subtitle {
    font-size: 1.8rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #8b0000, #ff4444);
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 68, 68, 0.6);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-section h2 {
    font-size: 3rem;
    text-align: center;
    color: #ff4444;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
    color: #ccc;
}

.warning-boxes {
    padding: 5rem 0;
    background: #0a0a0a;
}

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

.warning-box {
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 3px solid;
    transition: transform 0.3s ease;
}

.warning-box:hover {
    transform: translateY(-8px);
}

.warning-box.red {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(70, 0, 0, 0.3));
    border-color: #8b0000;
}

.warning-box.dark {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.5), rgba(20, 20, 20, 0.5));
    border-color: #444;
}

.warning-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.warning-box h3 {
    font-size: 1.8rem;
    color: #ff4444;
    margin-bottom: 1rem;
}

.warning-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #ccc;
}

.game-showcase {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.game-showcase h2 {
    font-size: 3rem;
    text-align: center;
    color: #ff4444;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.game-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #ccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-wrapper {
    background: #000;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #8b0000;
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.5);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
}

.features-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.features-section h2 {
    font-size: 3rem;
    text-align: center;
    color: #ff4444;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(40, 40, 40, 0.2));
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid rgba(139, 0, 0, 0.5);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: #ff4444;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.6rem;
    color: #ff4444;
    margin-bottom: 1rem;
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
}

.blood-divider {
    height: 5px;
    background: linear-gradient(90deg, transparent, #8b0000, #ff4444, #8b0000, transparent);
    margin: 3rem 0;
}

.site-footer {
    background: linear-gradient(180deg, #1a0000 0%, #0a0000 100%);
    padding: 4rem 2rem;
    border-top: 3px solid #8b0000;
}

.site-footer h3 {
    font-size: 2rem;
    text-align: center;
    color: #ff4444;
    margin-bottom: 1.5rem;
}

.site-footer > .container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.7;
}

.footer-resources {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.footer-resources a {
    color: #ff4444;
    text-decoration: none;
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border: 2px solid #8b0000;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-resources a:hover {
    background: #8b0000;
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.page-hero {
    background: linear-gradient(135deg, #1a0000, #330000);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 3px solid #8b0000;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: #ff4444;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.page-hero p {
    font-size: 1.3rem;
    color: #ccc;
}

.game-instructions {
    padding: 3rem 0;
    background: #1a1a1a;
}

.game-instructions h2 {
    font-size: 2.5rem;
    color: #ff4444;
    margin-bottom: 1.5rem;
    text-align: center;
}

.game-instructions p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #ccc;
}

.full-game-area {
    padding: 3rem 0;
    background: #0a0a0a;
}

.game-frame-container {
    background: #000;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #8b0000;
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.5);
}

.legal-text {
    padding: 3rem 0;
    background: #0a0a0a;
}

.legal-text h2 {
    font-size: 2.3rem;
    color: #ff4444;
    margin: 3rem 0 1.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
    color: #ccc;
}

.legal-text ul {
    margin: 1.2rem 0 1.5rem 2.5rem;
    line-height: 1.8;
    color: #ccc;
}

.legal-text li {
    margin-bottom: 0.6rem;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-verification.hidden {
    display: none;
}

.age-modal {
    background: linear-gradient(135deg, #1a0000, #330000);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 4px solid #8b0000;
    box-shadow: 0 0 60px rgba(139, 0, 0, 0.8);
}

.age-modal h2 {
    font-size: 2.8rem;
    color: #ff4444;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 68, 68, 0.5);
}

.age-modal p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #ddd;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-enter {
    background: linear-gradient(135deg, #8b0000, #ff4444);
    color: white;
}

.btn-enter:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.5);
}

.btn-leave {
    background: linear-gradient(135deg, #333, #555);
    color: white;
}

.btn-leave:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(100, 100, 100, 0.5);
}

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a0000;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
        border-top: 2px solid #8b0000;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.4rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .warning-grid {
        grid-template-columns: 1fr;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .footer-resources {
        flex-direction: column;
        gap: 1rem;
    }

    .age-modal {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .about-section h2,
    .game-showcase h2,
    .features-section h2 {
        font-size: 2rem;
    }

    .game-iframe {
        height: 450px;
    }

    .brand {
        font-size: 1.5rem;
    }
}
