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

:root {
    --primary-purple: #6B2D9E;
    --accent-gold: #D4AF37;
    --deep-black: #0A0A0F;
    --charcoal: #1A1A24;
    --soft-white: #F5F5F7;
    --muted-gray: #8B8B9E;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--deep-black);
    color: var(--soft-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--soft-white);
    letter-spacing: 1px;
}

.nav-desktop {
    display: flex;
    gap: 2.5rem;
}

.nav-desktop a {
    color: var(--muted-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-desktop a:hover {
    color: var(--accent-gold);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    padding: 100px 2rem 2rem;
    transition: right 0.4s ease;
    z-index: 999;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile a {
    display: block;
    color: var(--soft-white);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--accent-gold);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 50%, var(--deep-black) 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(107, 45, 158, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--soft-white), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--muted-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-purple), #8B3DC9);
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(107, 45, 158, 0.4);
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
}

.game-preview {
    background: var(--charcoal);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.section {
    padding: 5rem 2rem;
}

.section-dark {
    background: var(--charcoal);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.section-header p {
    color: var(--muted-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--muted-gray);
    font-size: 0.95rem;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-block {
    background: rgba(107, 45, 158, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
}

.info-block p {
    color: var(--muted-gray);
    font-size: 0.95rem;
}

.site-footer {
    background: var(--charcoal);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

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

.footer-links a {
    color: var(--muted-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.responsible-gambling {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.responsible-gambling a {
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 0.85rem;
}

.responsible-gambling a:hover {
    text-decoration: underline;
}

.copyright {
    color: var(--muted-gray);
    font-size: 0.85rem;
}

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

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: var(--charcoal);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--accent-gold);
}

.age-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.age-modal-content p {
    color: var(--muted-gray);
    margin-bottom: 2rem;
}

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

.age-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.age-btn-yes {
    background: linear-gradient(135deg, var(--primary-purple), #8B3DC9);
    color: white;
}

.age-btn-no {
    background: rgba(255,255,255,0.1);
    color: var(--soft-white);
}

.age-btn:hover {
    transform: scale(1.05);
}

.age-denied {
    display: none;
    text-align: center;
    padding: 2rem;
}

.age-denied h3 {
    color: #E74C3C;
    margin-bottom: 1rem;
}

/* Page Styles */
.page-hero {
    padding: 140px 2rem 4rem;
    background: linear-gradient(135deg, var(--deep-black), var(--charcoal));
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--muted-gray);
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 2rem;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin: 2rem 0 1rem;
}

.content-wrapper h3 {
    font-size: 1.4rem;
    color: var(--soft-white);
    margin: 1.5rem 0 0.75rem;
}

.content-wrapper p {
    color: var(--muted-gray);
    margin-bottom: 1rem;
}

.content-wrapper ul {
    color: var(--muted-gray);
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--charcoal);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.game-info {
    padding: 2rem;
    background: rgba(107, 45, 158, 0.1);
}

.game-info h3 {
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.game-info p {
    color: var(--muted-gray);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-blocks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .game-preview iframe {
        height: 350px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .game-container iframe {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .age-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .age-modal-buttons {
        flex-direction: column;
    }
}
