* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #f5f1e8;
    color: #333;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.top-nav {
    background: linear-gradient(135deg, #d4812f 0%, #c67326 100%);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-icon span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Header */
.page-header {
    background: linear-gradient(135deg, rgba(212, 129, 47, 0.95) 0%, rgba(198, 115, 38, 0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23d4812f" width="100" height="100"/></svg>');
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-content p {
    font-size: 1.4rem;
    opacity: 0.95;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.intro-card {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.intro-card h2 {
    color: #d4812f;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-card p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #555;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid;
}

.info-card.orange {
    border-top-color: #ff8c42;
}

.info-card.gold {
    border-top-color: #d4af37;
}

.info-card.bronze {
    border-top-color: #cd7f32;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.card-emoji {
    font-size: 2.5rem;
}

.card-header h3 {
    color: #d4812f;
    font-size: 1.4rem;
}

.info-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Featured Game */
.featured-game {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.featured-game h2 {
    color: #d4812f;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.game-desc {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-frame {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(212, 129, 47, 0.3);
}

.game-frame iframe {
    width: 100%;
    height: 100%;
}

/* Highlights */
.highlights {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.highlights h2 {
    color: #d4812f;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.highlight-item {
    text-align: center;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: #c67326;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Play Page Styles */
.play-intro {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.play-intro h2 {
    color: #d4812f;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.play-intro p {
    color: #666;
    font-size: 1.05rem;
}

.play-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.instruction-item {
    background: #fff;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.instruction-item h3 {
    color: #d4812f;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.instruction-item p {
    color: #666;
    font-size: 0.95rem;
}

.play-reminder {
    margin-top: 2rem;
}

.reminder-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #d4812f;
}

.reminder-box p {
    color: #555;
    font-size: 1.05rem;
    margin: 0;
}

/* Legal Pages */
.legal-page {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.legal-article {
    margin-bottom: 3rem;
}

.legal-article h2 {
    color: #d4812f;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.legal-article p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #fff 0%, #f5f1e8 100%);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 20px;
    box-shadow: 0 10px 50px rgba(212, 129, 47, 0.4);
    border: 3px solid #d4812f;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-box h2 {
    color: #d4812f;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.age-gate-box p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.age-text {
    color: #333 !important;
    font-weight: 700;
    font-size: 1.3rem !important;
}

.age-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-enter,
.btn-exit {
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.btn-enter {
    background: linear-gradient(135deg, #d4812f, #c67326);
    color: #fff;
}

.btn-exit {
    background: #666;
    color: #fff;
}

.btn-enter:hover,
.btn-exit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #d4812f 0%, #c67326 100%);
    color: #fff;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.support-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.support-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: background 0.3s;
}

.support-links a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.5rem;
}

.footer-bottom p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: #c67326;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: right 0.3s;
        box-shadow: -3px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .header-content h1 {
        font-size: 2.2rem;
    }

    .header-content p {
        font-size: 1.1rem;
    }

    .game-frame {
        height: 400px;
    }

    .info-cards,
    .highlight-grid,
    .play-instructions {
        grid-template-columns: 1fr;
    }

    .age-actions {
        flex-direction: column;
    }
}
