@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

:root {
    --primary-gold: #d4af37;
    --deep-purple: #1a0a2e;
    --royal-purple: #2d1b4e;
    --accent-magenta: #9b4dca;
    --soft-lavender: #e8d5f2;
    --text-light: #f5f0fa;
    --text-muted: #b8a8c8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--royal-purple) 50%, #3d2266 100%);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.7;
}

.site-header {
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.logo-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
}

.logo-icon::before {
    content: '♠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.4rem;
    color: var(--deep-purple);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -8px);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-gold);
}

.main-nav a:hover::after {
    width: 100%;
}

main {
    padding-top: 80px;
}

.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center, rgba(155, 77, 202, 0.2) 0%, transparent 70%);
}

.hero-content {
    max-width: 900px;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-gold), #f4d03f, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
    color: var(--deep-purple);
    padding: 1rem 3rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.notices-section {
    padding: 4rem 2rem;
    background: rgba(45, 27, 78, 0.5);
}

.notices-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.notice-card {
    background: rgba(26, 10, 46, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notice-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.notice-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.game-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-gold);
}

.game-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.game-container iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.features-section {
    padding: 5rem 2rem;
    background: rgba(26, 10, 46, 0.6);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.content-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.content-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-section ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.content-section li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.content-section li::before {
    content: '◆';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.site-footer {
    background: rgba(26, 10, 46, 0.98);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.responsible-gambling {
    margin-bottom: 2rem;
}

.responsible-gambling h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.responsible-gambling a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.responsible-gambling a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 10, 46, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-popup.hidden {
    display: none;
}

.age-popup-content {
    background: linear-gradient(135deg, var(--royal-purple), var(--deep-purple));
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.age-popup-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.age-popup-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 3rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-btn.yes {
    background: linear-gradient(45deg, var(--primary-gold), #f4d03f);
    color: var(--deep-purple);
}

.age-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.age-btn.no {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--text-muted);
}

.age-btn.no:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.page-header {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(155, 77, 202, 0.2) 0%, transparent 70%);
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.legal-content h2 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--soft-lavender);
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style: none;
    margin: 1rem 0;
}

.legal-content li {
    color: var(--text-muted);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.legal-content li::before {
    content: '◆';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
}

.game-info {
    background: rgba(45, 27, 78, 0.5);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.game-info h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.game-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

@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: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 10, 46, 0.98);
        transition: right 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .main-nav a {
        font-size: 1.3rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .notices-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe {
        height: 500px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .age-popup-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .responsible-gambling a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-icon::before {
        font-size: 1.1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .game-container iframe {
        height: 400px;
    }
}
