@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fff5f3 0%, #ffe8e0 50%, #ffd4c8 100%);
    min-height: 100vh;
    color: #2d1810;
}

.top-bar {
    background: linear-gradient(135deg, #ff9a76 0%, #ff7e5f 100%);
    box-shadow: 0 4px 20px rgba(255, 126, 95, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.site-title::before {
    content: "🎰";
    font-size: 2.2rem;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.primary-nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.primary-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
}

.page-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.welcome-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(255, 126, 95, 0.15);
    border: 2px solid #ffe8e0;
}

.welcome-card h1 {
    font-size: 2.5rem;
    color: #ff7e5f;
    margin-bottom: 1.2rem;
    font-weight: 900;
}

.welcome-card p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #5d4037;
    margin-bottom: 1rem;
}

.info-banner {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 18px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid #ff9a76;
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.1);
}

.info-banner h2 {
    color: #d84315;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.info-banner ul {
    list-style: none;
    padding-left: 0;
}

.info-banner li {
    padding: 0.8rem 0;
    color: #5d4037;
    font-weight: 600;
}

.info-banner li::before {
    content: "🎰";
    margin-right: 0.6rem;
}

.game-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(255, 126, 95, 0.15);
    border: 2px solid #ffe8e0;
}

.game-card h2 {
    color: #ff7e5f;
    margin-bottom: 1.8rem;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
}

.game-iframe {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 15px;
    background: #f5f5f5;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}

.content-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(255, 126, 95, 0.15);
    border: 2px solid #ffe8e0;
}

.content-card h1 {
    color: #ff7e5f;
    margin-bottom: 1.8rem;
    font-size: 2.5rem;
    font-weight: 900;
}

.content-card h2 {
    color: #ff9a76;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    font-weight: 800;
}

.content-card p {
    line-height: 1.9;
    color: #5d4037;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.content-card ul, .content-card ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #5d4037;
}

.content-card li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.page-footer {
    background: linear-gradient(135deg, #ff9a76 0%, #ff7e5f 100%);
    margin-top: 4rem;
    padding: 2.5rem 2rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 600;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-content p {
    color: rgba(255,255,255,0.9);
    margin-top: 1rem;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 24, 16, 0.85);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 4px solid #ff9a76;
}

.age-gate-content h2 {
    color: #ff7e5f;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    font-weight: 900;
}

.age-gate-content p {
    color: #5d4037;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.age-gate-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.age-gate-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-accept {
    background: linear-gradient(135deg, #ff9a76 0%, #ff7e5f 100%);
    color: white;
}

.btn-reject {
    background: #e0e0e0;
    color: #666;
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }
    
    .primary-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #ff9a76 0%, #ff7e5f 100%);
        transition: left 0.3s;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
    
    .primary-nav.active {
        left: 0;
    }
    
    .primary-nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }
    
    .primary-nav ul li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .primary-nav a {
        display: block;
        padding: 0.5rem;
    }
    
    .welcome-card h1 {
        font-size: 2rem;
    }
    
    .welcome-card, .content-card {
        padding: 2rem;
    }
    
    .content-card h1 {
        font-size: 2rem;
    }
    
    .game-iframe {
        height: 480px;
    }
    
    .page-content {
        padding: 1.5rem 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
