@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #16082d 100%);
    color: #e8e0f0;
    min-height: 100vh;
    line-height: 1.7;
}

a {
    color: #d4a853;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f5d699;
}

.site-header {
    background: rgba(15, 5, 25, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #d4a853;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo svg {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #d4a853;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #d4a853;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.main-nav a:hover {
    background: rgba(212, 168, 83, 0.2);
}

.hero-section {
    padding: 4rem 2rem;
    text-align: center;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23d4a85320" stroke-width="0.5"/></svg>') center/cover;
}

.hero-section h1 {
    font-size: 3rem;
    color: #d4a853;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    background: linear-gradient(145deg, #2d1b4e, #1a0a2e);
    border: 1px solid #d4a853;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.game-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #d4a853;
    margin-bottom: 2rem;
}

.game-container {
    background: #0f0519;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #3d2a5e;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

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

.info-card {
    background: linear-gradient(160deg, rgba(45, 27, 78, 0.8), rgba(26, 10, 46, 0.9));
    border: 1px solid #3d2a5e;
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 168, 83, 0.15);
}

.info-card h3 {
    color: #d4a853;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card p {
    opacity: 0.85;
    font-size: 0.95rem;
}

.content-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h1 {
    font-size: 2.5rem;
    color: #d4a853;
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h2 {
    font-size: 1.5rem;
    color: #d4a853;
    margin: 2rem 0 1rem;
}

.content-section p, .content-section li {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.content-section ul, .content-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.site-footer {
    background: rgba(10, 3, 18, 0.95);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 2px solid #3d2a5e;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h4 {
    color: #d4a853;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-text {
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 3, 18, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-popup-content {
    background: linear-gradient(160deg, #2d1b4e, #1a0a2e);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    border: 2px solid #d4a853;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
}

.age-popup-content h2 {
    color: #d4a853;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.age-popup-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.age-btn.yes {
    background: linear-gradient(145deg, #d4a853, #b8923e);
    color: #1a0a2e;
}

.age-btn.yes:hover {
    background: linear-gradient(145deg, #f5d699, #d4a853);
    transform: scale(1.05);
}

.age-btn.no {
    background: transparent;
    border: 2px solid #d4a853;
    color: #d4a853;
}

.age-btn.no:hover {
    background: rgba(212, 168, 83, 0.1);
}

.blocked-message {
    text-align: center;
    padding: 4rem 2rem;
}

.blocked-message h2 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 5, 25, 0.98);
        padding: 1rem;
        display: none;
        border-bottom: 2px solid #d4a853;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .game-container iframe {
        height: 400px;
    }
    
    .badge-row {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}
