@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #c9a227;
    --deep-purple: #1a0a2e;
    --royal-purple: #2d1b4e;
    --accent-silver: #e8e8e8;
    --dark-bg: #0d0518;
    --text-light: #f5f5f5;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-silver);
}

.site-header {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-bg) 100%);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--primary-gold);
}

.header-container {
    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-icon {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.nav-desktop {
    display: flex;
    gap: 2.5rem;
}

.nav-desktop a {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-desktop a:hover {
    border-bottom-color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--deep-purple);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.close-nav {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    color: var(--primary-gold);
    cursor: pointer;
}

main {
    margin-top: 80px;
}

.hero-section {
    background: linear-gradient(180deg, var(--royal-purple) 0%, var(--dark-bg) 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.5);
}

.hero-section p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #8b6914 100%);
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
    color: var(--dark-bg);
}

.notice-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid var(--primary-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.game-section {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.game-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--royal-purple);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(201, 162, 39, 0.2);
}

.game-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
}

.features-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--royal-purple) 50%, var(--dark-bg) 100%);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(45, 27, 78, 0.6);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.info-section {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.info-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 2rem;
    background: var(--dark-bg);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-section h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.content-section h2 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.content-section p, .content-section ul {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.content-section ul {
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.site-footer {
    background: var(--deep-purple);
    padding: 3rem 2rem 1.5rem;
    border-top: 1px solid var(--primary-gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    margin: 0 1rem;
    font-size: 0.9rem;
}

.responsible-gambling {
    margin-bottom: 1.5rem;
}

.responsible-gambling p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.responsible-gambling a {
    margin: 0 0.75rem;
    font-size: 0.85rem;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
}

.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-popup.hidden {
    display: none;
}

.age-popup-content {
    background: var(--royal-purple);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
    border: 2px solid var(--primary-gold);
}

.age-popup-content h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.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;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.age-btn.no {
    background: transparent;
    border: 2px solid var(--accent-silver);
    color: var(--accent-silver);
}

.age-btn:hover {
    transform: scale(1.05);
}

.blocked-message {
    display: none;
    text-align: center;
}

.blocked-message h2 {
    color: #ff4444;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-wrapper iframe {
        height: 450px;
    }
    
    .age-popup-content {
        padding: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
