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

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(to bottom, #1a1a2e, #16213e);
    color: #333;
    min-height: 100vh;
}

/* Top Navigation */
.top-nav {
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    display: block;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-menu a.nav-active {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #fec309 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="30" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="70" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Section Styling */
section {
    margin-bottom: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fec309;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Content Box */
.content-box {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.content-box h2 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-box h3 {
    color: #ff8c42;
    font-size: 1.4rem;
    margin: 1.75rem 0 1rem;
    font-weight: 600;
}

.content-box p {
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.content-box ul {
    margin: 1rem 0 1.5rem 2.5rem;
    color: #444;
}

.content-box li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* Key Points Grid */
.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.point-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-top: 8px solid;
    transition: transform 0.3s ease;
}

.point-card:hover {
    transform: translateY(-10px);
}

.point-card.card-green {
    border-top-color: #10b981;
}

.point-card.card-blue {
    border-top-color: #3b82f6;
}

.point-card.card-red {
    border-top-color: #ef4444;
}

.point-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.point-card h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.point-card p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

/* Game Showcase */
.game-embed {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 12px;
    background: #000;
}

.game-description {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.game-description p {
    color: #444;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.benefit-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #ff6b35;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.benefit-item p {
    color: #555;
    line-height: 1.7;
}

/* Play Page */
.play-area {
    margin-bottom: 2rem;
}

.game-embed-large {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.game-iframe-large {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 12px;
    background: #000;
}

/* Legal Document */
.legal-document {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.legal-block {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #f0f0f0;
}

.legal-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.legal-block h2 {
    color: #ff6b35;
    font-size: 1.65rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.legal-block h3 {
    color: #ff8c42;
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.legal-block p {
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.legal-block ul {
    margin: 1rem 0 1.5rem 2.5rem;
    color: #444;
}

.legal-block li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.highlight-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 8px solid #ffc107;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.highlight-warning h2 {
    color: #856404;
}

.highlight-warning p,
.highlight-warning li {
    color: #856404;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fec309;
    font-weight: 700;
}

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

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #fec309;
}

.footer-text {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Age Gate */
.age-gate {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
    border: 4px solid #ff6b35;
}

.age-gate-box h2 {
    color: #ff6b35;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.age-gate-box p {
    color: #333;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.age-gate-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-gate-actions button {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-confirm {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.btn-decline {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.btn-decline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu a {
        border-radius: 0;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .points-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 450px;
    }

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

    .age-gate-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-gate-box h2 {
        font-size: 1.75rem;
    }

    .age-gate-actions {
        flex-direction: column;
    }

    .legal-document {
        padding: 2rem 1.5rem;
    }
}
