* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fafbfc;
    color: #1a202c;
    line-height: 1.6;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Bar */
.top-bar {
    background: #2d3748;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-emoji {
    font-size: 2.2rem;
}

.brand-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.main-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Hero Area */
.hero-area {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.btn-hero {
    display: inline-block;
    background: #fff;
    color: #ff6b6b;
    padding: 1.1rem 2.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Essential Info */
.essential-info {
    padding: 4rem 2rem;
    background: #fff;
}

.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.15);
}

.info-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.info-item h3 {
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-item p {
    color: #4a5568;
    line-height: 1.8;
}

/* About Section */
.about-us {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 2.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.about-col p {
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Game Display */
.game-display {
    padding: 5rem 2rem;
    background: #fff;
}

.game-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
}

.game-embed-box {
    max-width: 1000px;
    margin: 0 auto 2.5rem;
    background: #2d3748;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
    background: #fff;
}

.game-perks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.perk-badge {
    background: #2d3748;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Info Grid */
.info-grid {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.grid-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.grid-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff6b6b;
}

.grid-card h3 {
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.grid-card p {
    color: #4a5568;
    line-height: 1.8;
}

/* Call to Play */
.call-to-play {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #c44569 100%);
    text-align: center;
    color: #fff;
}

.call-to-play h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.call-to-play p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    background: #fff;
    color: #ff6b6b;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Play Page */
.play-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #c44569 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: #fff;
}

.play-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.play-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.game-instructions {
    padding: 3rem 2rem;
    background: #f7fafc;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.instruction-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.instruction-box h3 {
    color: #ff6b6b;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.instruction-box ul {
    list-style-position: inside;
    color: #4a5568;
}

.instruction-box li {
    margin: 0.75rem 0;
    line-height: 1.7;
}

.play-area {
    padding: 3rem 2rem;
    background: #fff;
}

.game-player-box {
    background: #2d3748;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.game-player {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
    background: #fff;
}

.play-reminder {
    padding: 2rem;
    background: #f7fafc;
}

.reminder-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #ffc107;
    text-align: center;
}

.reminder-card p {
    color: #856404;
    font-weight: 600;
    margin: 0;
}

/* Legal Pages */
.legal-wrapper {
    padding: 4rem 2rem;
    background: #f7fafc;
    min-height: calc(100vh - 70px);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-document h1 {
    color: #ff6b6b;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.document-date {
    color: #718096;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.document-content {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.document-content h2 {
    color: #ff6b6b;
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.document-content h2:first-child {
    margin-top: 0;
}

.document-content p {
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.document-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #4a5568;
}

.document-content li {
    margin: 0.75rem 0;
    line-height: 1.9;
}

/* Footer */
.main-footer {
    background: #2d3748;
    color: #fff;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin: 0.75rem 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
}

.footer-disclaimer {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

/* Age Verification Modal */
.age-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(5px);
}

.age-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 520px;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.age-modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-modal h2 {
    color: #2d3748;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.age-modal p {
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.age-question {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: #ff6b6b;
    color: #fff;
}

.btn-primary:hover {
    background: #ee5a6f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: #718096;
    color: #fff;
}

.btn-secondary:hover {
    background: #4a5568;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-hamburger {
        display: block;
    }

    .main-nav {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #2d3748;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 0;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-item {
        display: block;
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .game-embed {
        height: 450px;
    }

    .game-player {
        height: 550px;
    }

    .age-modal {
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }

    .document-content {
        padding: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .grid-row {
        grid-template-columns: 1fr;
    }
}
