* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #1a0000;
    color: #f5e6d3;
    min-height: 100vh;
    line-height: 1.65;
    background-image: radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.2) 0%, transparent 50%);
}

.page-container {
    width: 100%;
    margin: 0 auto;
}

header {
    background: linear-gradient(to right, #8b0000, #b8860b, #8b0000);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(184, 134, 11, 0.4);
    border-bottom: 2px solid #b8860b;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    max-width: 100%;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: #fff;
}

.brand-icon {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ffd700, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    border: 3px solid #8b0000;
}

.brand-title {
    font-family: 'Crimson Text', serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.site-nav ul li a {
    color: #ffd700;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid transparent;
}

.site-nav ul li a:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 35px;
    height: 4px;
    background: #ffd700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-banner {
    padding: 120px 40px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(139, 0, 0, 0.4), transparent);
}

.hero-banner h1 {
    font-family: 'Crimson Text', serif;
    font-size: 72px;
    margin-bottom: 30px;
    color: #ffd700;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.hero-banner p {
    font-size: 24px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #f5deb3;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 100px 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-box {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.6), rgba(26, 0, 0, 0.8));
    padding: 45px 35px;
    border-radius: 15px;
    border: 3px solid #b8860b;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.4);
}

.feature-box h3 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffd700;
    font-weight: 700;
}

.feature-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #e6d5c3;
}

.game-display {
    margin: 100px 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.game-display h2 {
    font-family: 'Crimson Text', serif;
    font-size: 52px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffd700;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.game-holder {
    background: rgba(0, 0, 0, 0.5);
    padding: 45px;
    border-radius: 20px;
    border: 3px solid #b8860b;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

.game-iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 12px;
    background: #000;
}

.main-content {
    margin: 100px auto;
    padding: 50px 40px;
    max-width: 1400px;
}

.main-content h2 {
    font-family: 'Crimson Text', serif;
    font-size: 52px;
    margin-bottom: 40px;
    color: #ffd700;
    text-align: center;
    font-weight: 700;
}

.main-content h3 {
    font-family: 'Crimson Text', serif;
    font-size: 32px;
    margin: 40px 0 20px;
    color: #b8860b;
    font-weight: 700;
}

.main-content p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: #e6d5c3;
}

.main-content ul {
    margin: 28px 0;
    padding-left: 40px;
}

.main-content ul li {
    margin: 14px 0;
    font-size: 18px;
    line-height: 1.8;
    color: #e6d5c3;
}

footer {
    background: linear-gradient(to right, #8b0000, #b8860b, #8b0000);
    padding: 70px 40px 40px;
    margin-top: 120px;
    border-top: 3px solid #ffd700;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.support-links a {
    color: #ffd700;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.support-links a:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

.footer-disclaimer {
    color: #f5deb3;
    font-size: 16px;
    line-height: 1.8;
}

.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-check.visible {
    display: flex;
}

.age-check-box {
    background: linear-gradient(135deg, #1a0000, #3d0000);
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    border: 4px solid #b8860b;
    box-shadow: 0 0 70px rgba(184, 134, 11, 0.6);
}

.age-check-box h2 {
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    margin-bottom: 30px;
    color: #ffd700;
    font-weight: 700;
}

.age-check-box p {
    font-size: 20px;
    margin-bottom: 45px;
    line-height: 1.8;
    color: #f5deb3;
}

.age-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.age-action {
    padding: 20px 55px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-action.accept {
    background: linear-gradient(135deg, #b8860b, #ffd700);
    color: #1a0000;
}

.age-action.accept:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.6);
}

.age-action.reject {
    background: transparent;
    color: #ffd700;
    border: 3px solid #b8860b;
}

.age-action.reject:hover {
    background: rgba(184, 134, 11, 0.2);
    border-color: #ffd700;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(to bottom, #8b0000, #1a0000);
        transition: right 0.3s ease;
        padding: 110px 30px 30px;
        border-left: 3px solid #b8860b;
    }

    .site-nav.active {
        right: 0;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .site-nav ul li {
        border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    }

    .site-nav ul li a {
        display: block;
        padding: 22px 20px;
        font-size: 19px;
    }

    .hero-banner h1 {
        font-size: 46px;
    }

    .hero-banner p {
        font-size: 19px;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 600px;
    }

    .main-content h2 {
        font-size: 38px;
    }

    .age-check-box {
        margin: 30px;
        padding: 45px 32px;
    }

    .age-check-box h2 {
        font-size: 34px;
    }

    .age-actions {
        flex-direction: column;
    }

    .age-action {
        width: 100%;
    }
}
