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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a0505 0%, #2d0a0a 100%);
    color: #f0f0f0;
    line-height: 1.7;
    min-height: 100vh;
}

.site-nav {
    background: linear-gradient(135deg, #3d0f0f 0%, #1f0707 100%);
    padding: 1rem 2rem;
    border-bottom: 4px solid #dc2626;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-emblem {
    font-size: 2.5rem;
    color: #dc2626;
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.6));
}

.logo-name {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.5);
}

.navigation-menu {
    display: flex;
    gap: 2rem;
}

.menu-link {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    position: relative;
}

.menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(220, 38, 38, 0.2);
    transition: width 0.3s ease;
    border-radius: 5px;
    z-index: -1;
}

.menu-link:hover::before,
.menu-link.active-link::before {
    width: 100%;
}

.menu-link:hover,
.menu-link.active-link {
    color: #dc2626;
}

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

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

.mobile-menu-panel {
    display: none;
    background: rgba(31, 7, 7, 0.98);
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    border-bottom: 4px solid #dc2626;
}

.mobile-menu-panel.open {
    display: flex;
}

.mobile-menu-link {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active-link {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    border-left-color: #dc2626;
}

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.wrap {
    padding: 0 1rem;
}

.hero-splash {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(185, 28, 28, 0.15) 100%);
    border-radius: 12px;
    margin: 2rem 0;
    border: 3px solid rgba(220, 38, 38, 0.4);
}

.splash-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 15px rgba(220, 38, 38, 0.5);
}

.splash-subtitle {
    font-size: 1.2rem;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 2rem;
    line-height: 1.9;
    color: #e5e5e5;
}

.splash-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.info-badge {
    background: rgba(220, 38, 38, 0.25);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid #dc2626;
    font-size: 1.05rem;
}

.about-platform {
    padding: 4rem 0;
}

.main-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 2px 12px rgba(220, 38, 38, 0.4);
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-card {
    background: linear-gradient(135deg, rgba(61, 15, 15, 0.7) 0%, rgba(31, 7, 7, 0.7) 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.about-card:hover {
    border-color: #dc2626;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.card-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.important-notices-section {
    padding: 3rem 0;
}

.notice-container {
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.25) 0%, rgba(220, 38, 38, 0.2) 100%);
    border: 3px solid #b91c1c;
    border-radius: 10px;
    padding: 2.5rem;
}

.notice-header {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #dc2626;
    margin-bottom: 2rem;
}

.notice-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notice-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid #dc2626;
}

.featured-game-area {
    padding: 4rem 0;
}

.game-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    color: #e5e5e5;
}

.game-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #000;
    padding: 1rem;
    border-radius: 10px;
    border: 3px solid #dc2626;
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.35);
}

.game-player {
    width: 100%;
    height: 650px;
    border-radius: 8px;
}

.game-disclaimer {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.15rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 8px;
}

.features-highlight {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-box {
    background: linear-gradient(135deg, rgba(61, 15, 15, 0.7) 0%, rgba(31, 7, 7, 0.7) 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #dc2626;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #dc2626;
    margin-bottom: 0.8rem;
}

.cta-area {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(185, 28, 28, 0.15) 100%);
    border-radius: 12px;
    margin: 2rem 0;
    border: 3px solid rgba(220, 38, 38, 0.4);
}

.cta-area h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.cta-area p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 3px solid #dc2626;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
}

.cta-btn:hover {
    background: transparent;
    color: #dc2626;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.7);
}

.page-header-section {
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-header-section h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(220, 38, 38, 0.5);
}

.gameplay-section {
    padding: 2rem 0 4rem;
}

.gameplay-instructions {
    background: linear-gradient(135deg, rgba(61, 15, 15, 0.7) 0%, rgba(31, 7, 7, 0.7) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 5px solid #dc2626;
}

.gameplay-instructions h3 {
    font-family: 'Oswald', sans-serif;
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.gameplay-instructions ul {
    margin-left: 2rem;
}

.gameplay-instructions li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.gameplay-container {
    background: #000;
    padding: 1rem;
    border-radius: 10px;
    border: 3px solid #dc2626;
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.35);
}

.gameplay-container iframe {
    width: 100%;
    height: 750px;
    border-radius: 8px;
}

.gameplay-reminder {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.15rem;
    padding: 1.5rem;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 8px;
}

.legal-content-area {
    padding: 2rem 0 4rem;
}

.legal-body {
    background: linear-gradient(135deg, rgba(61, 15, 15, 0.7) 0%, rgba(31, 7, 7, 0.7) 100%);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid rgba(220, 38, 38, 0.3);
}

.legal-body h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #dc2626;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #dc2626;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-body p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.legal-body ul {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-body li {
    margin-bottom: 0.8rem;
}

.terms-highlight,
.privacy-points,
.alert-box {
    background: rgba(220, 38, 38, 0.2);
    border: 3px solid #dc2626;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.page-footer {
    background: linear-gradient(135deg, #3d0f0f 0%, #1f0707 100%);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 4px solid #dc2626;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-block h3 {
    font-family: 'Oswald', sans-serif;
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    opacity: 0.8;
}

.age-check-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-check-overlay.active {
    display: flex;
}

.age-check-modal {
    background: linear-gradient(135deg, #3d0f0f 0%, #1f0707 100%);
    padding: 3rem;
    border-radius: 12px;
    max-width: 550px;
    margin: 20px;
    text-align: center;
    border: 4px solid #dc2626;
    box-shadow: 0 0 50px rgba(220, 38, 38, 0.6);
}

.age-check-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.age-check-modal h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.age-check-modal p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.age-check-buttons {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
}

.age-button {
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-button.accept {
    background: #dc2626;
    color: #fff;
    border: 3px solid #dc2626;
}

.age-button.accept:hover {
    background: transparent;
    color: #dc2626;
    transform: scale(1.05);
}

.age-button.reject {
    background: transparent;
    color: #b91c1c;
    border: 3px solid #b91c1c;
}

.age-button.reject:hover {
    background: #b91c1c;
    color: #fff;
}

@media (min-width: 768px) {
    .navigation-menu {
        display: flex;
    }

    .nav-burger {
        display: none;
    }

    .about-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-sections {
        grid-template-columns: repeat(3, 1fr);
    }

    .age-check-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .navigation-menu {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .splash-title {
        font-size: 2rem;
    }

    .main-heading {
        font-size: 1.8rem;
    }

    .logo-name {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
