* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a0000;
    color: #f5f5f5;
    line-height: 1.6;
}

/* Age Verification Overlay */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    backdrop-filter: blur(8px);
}

.age-overlay.hidden {
    display: none;
}

.age-modal {
    background: linear-gradient(145deg, #2d0a0a 0%, #4a0e0e 100%);
    padding: 55px 45px;
    border-radius: 20px;
    max-width: 520px;
    text-align: center;
    border: 3px solid #ff4500;
    box-shadow: 0 0 60px rgba(255, 69, 0, 0.4);
}

.age-icon {
    font-size: 90px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(255, 69, 0, 0.6));
}

.age-modal h2 {
    color: #ff6347;
    font-size: 34px;
    margin-bottom: 25px;
    font-weight: 800;
}

.age-modal p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.accept-btn, .decline-btn {
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.accept-btn {
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
    color: #fff;
}

.accept-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.6);
}

.decline-btn {
    background: #3a3a3a;
    color: #fff;
}

.decline-btn:hover {
    background: #555;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #2d0a0a 0%, #4a0e0e 100%);
    box-shadow: 0 3px 20px rgba(255, 69, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 22px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 12px rgba(255, 69, 0, 0.6));
}

.logo-name {
    font-size: 30px;
    font-weight: 800;
    color: #ff6347;
    letter-spacing: 1px;
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-list li a {
    color: #f5f5f5;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-list li a:hover {
    background: rgba(255, 69, 0, 0.2);
    color: #ff6347;
}

.nav-list li a.nav-active {
    background: rgba(255, 69, 0, 0.3);
    color: #ff6347;
}

.mobile-nav-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-btn .bar {
    width: 32px;
    height: 4px;
    background: #ff6347;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, #330000 0%, #660000 50%, #990000 100%);
    padding: 100px 35px;
    text-align: center;
}

.welcome-container {
    max-width: 900px;
    margin: 0 auto;
}

.main-heading {
    font-size: 58px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 0 40px rgba(255, 69, 0, 0.8);
}

.main-subheading {
    font-size: 26px;
    color: #ffcccc;
    margin-bottom: 30px;
    font-weight: 500;
}

.welcome-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.primary-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff4500 0%, #ff6347 100%);
    color: #fff;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 19px;
    transition: all 0.3s ease;
}

.primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 69, 0, 0.5);
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 35px;
}

.content-wrapper-narrow {
    max-width: 950px;
    margin: 0 auto;
    padding: 70px 35px;
}

/* Section Heading */
.section-heading {
    font-size: 44px;
    color: #ff6347;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 800;
}

/* Info Cards Section */
.info-cards-section {
    background: #0f0000;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
}

.info-card {
    background: linear-gradient(145deg, #2d0a0a 0%, #4a0e0e 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #ff4500;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.4);
    border-color: #ff6347;
}

.card-icon {
    font-size: 55px;
    margin-bottom: 25px;
}

.card-title {
    color: #ff6347;
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 700;
}

.card-text {
    font-size: 16px;
    line-height: 1.8;
}

/* Featured Game Section */
.featured-game-section {
    background: #1a0000;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #d0d0d0;
}

.game-wrapper {
    background: #000;
    padding: 30px;
    border-radius: 18px;
    border: 3px solid #ff4500;
    box-shadow: 0 0 50px rgba(255, 69, 0, 0.3);
}

.game-frame {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 12px;
}

/* Features Section */
.features-section {
    background: #0f0000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: linear-gradient(145deg, #2d0a0a 0%, #4a0e0e 100%);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #660000;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #ff4500;
    transform: translateY(-6px);
}

.feature-box h4 {
    color: #ff6347;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    font-size: 16px;
    line-height: 1.7;
}

/* Responsible Section */
.responsible-section {
    background: linear-gradient(135deg, #330000 0%, #660000 100%);
    padding: 70px 35px;
    text-align: center;
}

.responsible-text {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.help-resources {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

.help-link {
    background: rgba(255, 69, 0, 0.2);
    color: #ff6347;
    padding: 15px 38px;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #ff4500;
    font-weight: 700;
    transition: all 0.3s ease;
}

.help-link:hover {
    background: #ff4500;
    color: #fff;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #330000 0%, #660000 100%);
    padding: 90px 35px;
    text-align: center;
}

.page-banner h1 {
    font-size: 54px;
    color: #ff6347;
    margin-bottom: 18px;
    font-weight: 800;
}

.page-banner p {
    font-size: 22px;
    color: #ffcccc;
}

/* Play Page Styles */
.game-info-section {
    background: #1a0000;
}

.info-block {
    background: linear-gradient(145deg, #2d0a0a 0%, #4a0e0e 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 2px solid #ff4500;
}

.info-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.technical-specs {
    background: linear-gradient(145deg, #2d0a0a 0%, #4a0e0e 100%);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #ff4500;
}

.technical-specs h3 {
    color: #ff6347;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.specs-list {
    list-style: none;
    padding: 0;
}

.specs-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 69, 0, 0.3);
    font-size: 16px;
}

.specs-list li:last-child {
    border-bottom: none;
}

.play-game-section {
    background: #0f0000;
}

.game-display {
    background: #000;
    padding: 30px;
    border-radius: 18px;
    border: 3px solid #ff4500;
}

.game-frame-full {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 12px;
}

.play-reminders-section {
    background: #1a0000;
}

.reminders-heading {
    color: #ff6347;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.reminders-list {
    display: grid;
    gap: 30px;
}

.reminder-card {
    display: flex;
    gap: 25px;
    background: linear-gradient(145deg, #2d0a0a 0%, #4a0e0e 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #ff4500;
    align-items: flex-start;
}

.reminder-symbol {
    font-size: 45px;
    flex-shrink: 0;
}

.reminder-text h4 {
    color: #ff6347;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.reminder-text p {
    font-size: 16px;
    line-height: 1.7;
}

/* Legal Section */
.legal-section {
    background: #0f0000;
}

.legal-article {
    background: linear-gradient(145deg, #2d0a0a 0%, #4a0e0e 100%);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 35px;
    border: 1px solid #660000;
}

.legal-article h2 {
    color: #ff6347;
    font-size: 30px;
    margin-bottom: 22px;
    font-weight: 700;
}

.legal-article h3 {
    color: #ff6347;
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 600;
}

.legal-article p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-article ul {
    margin-left: 35px;
    margin-bottom: 18px;
}

.legal-article li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.highlighted-article {
    border: 3px solid #ff6347;
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.3);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2d0a0a 0%, #4a0e0e 100%);
    padding: 55px 35px;
    border-top: 3px solid #ff4500;
}

.footer-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo {
    font-size: 36px;
}

.footer-title {
    font-size: 30px;
    font-weight: 800;
    color: #ff6347;
}

.copyright-text {
    color: #d0d0d0;
    margin-bottom: 30px;
}

.footer-nav {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ff6347;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff8c69;
}

.footer-support {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 69, 0, 0.3);
}

.support-heading {
    color: #ff6347;
    font-weight: 700;
    margin-bottom: 18px;
}

.support-links {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-links a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-links a:hover {
    color: #ff6347;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-nav-btn {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #2d0a0a 0%, #4a0e0e 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.active {
        max-height: 450px;
    }

    .nav-list {
        flex-direction: column;
        padding: 25px;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        display: block;
        padding: 16px;
    }

    .main-heading {
        font-size: 38px;
    }

    .main-subheading {
        font-size: 20px;
    }

    .section-heading {
        font-size: 34px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 450px;
    }

    .game-frame-full {
        height: 550px;
    }

    .age-modal {
        margin: 25px;
        padding: 40px 30px;
    }

    .age-icon {
        font-size: 70px;
    }

    .age-modal h2 {
        font-size: 28px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .help-resources {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
        gap: 18px;
    }

    .support-links {
        flex-direction: column;
    }

    .welcome-section {
        padding: 70px 25px;
    }

    .page-banner {
        padding: 70px 25px;
    }

    .page-banner h1 {
        font-size: 40px;
    }
}
