@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6b21a8;
    --secondary: #d4af37;
    --dark: #1a0a2e;
    --light: #f5f0ff;
    --accent: #9333ea;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, #2d1b4e 100%);
    color: var(--light);
    min-height: 100vh;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffd700;
}

.site-header {
    background: rgba(26, 10, 46, 0.95);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo svg {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--secondary);
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

main {
    padding-top: 80px;
}

.hero-section {
    padding: 6rem 2rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(107, 33, 168, 0.3) 0%, transparent 70%);
}

.hero-section h1 {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #ffd700);
    color: var(--dark);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: var(--dark);
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.notice-card {
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.notice-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.notice-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.game-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-section h2 {
    text-align: center;
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.game-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.features-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.features-section h2 {
    text-align: center;
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.2), rgba(147, 51, 234, 0.1));
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.feature-item .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.content-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h1 {
    color: var(--secondary);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h2 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

.content-section p {
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.content-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.site-footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.responsible-gaming {
    margin-bottom: 2rem;
}

.responsible-gaming h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.responsible-gaming a {
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-content p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal {
    background: linear-gradient(135deg, var(--dark), #2d1b4e);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    border: 2px solid var(--secondary);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.age-modal h2 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.age-modal p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-yes {
    background: linear-gradient(135deg, var(--secondary), #ffd700);
    color: var(--dark);
}

.btn-no {
    background: transparent;
    border: 2px solid var(--light) !important;
    color: var(--light);
}

.age-buttons button:hover {
    transform: scale(1.05);
}

.hidden {
    display: none !important;
}

@media (max-width: 992px) {
    .notices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(26, 10, 46, 0.98);
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .notices-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe {
        height: 450px;
    }
    
    .content-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 4rem 1rem;
    }
    
    .game-container iframe {
        height: 350px;
    }
    
    .age-modal {
        margin: 1rem;
        padding: 2rem;
    }
}
