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

body {
    font-family: 'Nunito', sans-serif;
    background: #1e1e2e;
    color: #e0e0e0;
    line-height: 1.7;
}

.age-check-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.age-check-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2a2a3e;
    border-radius: 15px;
    max-width: 500px;
    width: calc(100% - 2rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    padding: 2rem;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.modal-header h2 {
    color: white;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.age-icon {
    font-size: 3.5rem;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-info {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
}

.modal-footer {
    padding: 0 2rem 2rem 2rem;
    display: flex;
    gap: 1rem;
}

.modal-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
}

.accept-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.decline-btn {
    background: #3a3a4e;
    color: #e0e0e0;
}

.decline-btn:hover {
    background: #4a4a5e;
}

.main-header {
    background: #2a2a3e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-icon {
    font-size: 2rem;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff6b6b;
    letter-spacing: 2px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-line {
    width: 30px;
    height: 3px;
    background: #ff6b6b;
    transition: 0.3s;
    border-radius: 3px;
}

.primary-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.nav-item:hover,
.nav-item.current {
    color: #ff6b6b;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.banner-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.banner-content h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.banner-tagline {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.banner-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #ff6b6b;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.highlights-section {
    padding: 4rem 0;
}

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

.highlight-box {
    background: #2a2a3e;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border-top: 5px solid;
}

.highlight-box:hover {
    transform: translateY(-10px);
}

.accent-blue {
    border-top-color: #4f9dff;
}

.accent-orange {
    border-top-color: #ff8e53;
}

.accent-purple {
    border-top-color: #a855f7;
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.highlight-box h3 {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.featured-game-section {
    padding: 4rem 0;
    background: #2a2a3e;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-weight: 900;
}

.section-intro p {
    font-size: 1.1rem;
    color: #b0b0b0;
}

.game-showcase {
    max-width: 950px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

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

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

.section-title {
    font-size: 2.5rem;
    color: #ff6b6b;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
}

.about-grid {
    display: grid;
    gap: 2rem;
}

.about-card {
    background: #2a2a3e;
    padding: 2.5rem;
    border-radius: 15px;
}

.about-card h3 {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 900;
}

.about-card p {
    line-height: 1.9;
}

.features-section {
    padding: 4rem 0;
    background: #2a2a3e;
}

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

.feature-card {
    background: #1e1e2e;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    background: #2a2a3e;
    transform: translateY(-5px);
}

.feature-symbol {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 900;
}

.disclaimer-preview {
    padding: 4rem 0;
}

.disclaimer-content {
    background: #2a2a3e;
    padding: 3rem;
    border-radius: 15px;
    border-left: 5px solid #ff6b6b;
}

.disclaimer-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.main-footer {
    background: #2a2a3e;
    padding: 3rem 2rem 1rem 2rem;
    border-top: 3px solid #ff6b6b;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-weight: 900;
}

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

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

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

.footer-bottom-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3a3a4e;
    color: #888;
}

.play-page .play-header-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.play-header-section h1 {
    font-size: 3rem;
    color: white;
    font-weight: 900;
    margin-bottom: 1rem;
}

.play-description {
    font-size: 1.2rem;
    color: white;
}

.play-instructions-section {
    padding: 3rem 0;
}

.instructions-box {
    background: #2a2a3e;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border-left: 5px solid #ff6b6b;
}

.instructions-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.play-game-section {
    padding: 3rem 0;
}

.game-container {
    background: #2a2a3e;
    padding: 2rem;
    border-radius: 15px;
}

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

.play-reminders-section {
    padding: 3rem 0;
}

.reminders-box {
    background: #2a2a3e;
    padding: 2.5rem;
    border-radius: 15px;
}

.reminders-box h3 {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.reminders-list {
    list-style: none;
    line-height: 2.5;
    font-size: 1.05rem;
}

.legal-page .legal-intro {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.legal-intro h1 {
    font-size: 3rem;
    color: white;
    font-weight: 900;
    margin-bottom: 1rem;
}

.legal-date {
    color: rgba(255, 255, 255, 0.9);
}

.legal-document {
    padding: 4rem 0;
}

.legal-section {
    background: #2a2a3e;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: #ff6b6b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.legal-section h3 {
    color: #ff8e53;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 700;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

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

.legal-section.highlight {
    border-left: 5px solid #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 142, 83, 0.1) 100%);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 270px;
        height: calc(100vh - 75px);
        background: #2a2a3e;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        gap: 0;
        border-left: 3px solid #ff6b6b;
    }

    .primary-nav.open {
        right: 0;
    }

    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid #3a3a4e;
    }

    .banner-content h1 {
        font-size: 2.2rem;
    }

    .banner-tagline {
        font-size: 1.1rem;
    }

    .content-wrapper {
        padding: 0 1rem;
    }

    .game-iframe {
        height: 450px;
    }

    .play-game-iframe {
        height: 550px;
    }

    .modal-footer {
        flex-direction: column;
    }
}
