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

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

:root {
    --emerald: #10B981;
    --emerald-dark: #059669;
    --emerald-light: #34D399;
    --bg-deep: #0D1F17;
    --bg-surface: #142821;
    --cream: #F5F5F0;
    --cream-dim: #C9C9BE;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-deep);
    color: var(--cream);
    line-height: 1.75;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(13, 31, 23, 0.97), rgba(13, 31, 23, 0.92));
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 18px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.25);
}

.top-bar-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-gem {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.logo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--emerald-light);
    letter-spacing: 4px;
}

.nav-menu {
    display: flex;
    gap: 48px;
}

.nav-menu a {
    color: var(--cream-dim);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--emerald-light);
}

.mobile-trigger {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-trigger span {
    height: 2px;
    background: var(--emerald);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-trigger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

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

.mobile-trigger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Banner */
.banner {
    padding: 180px 35px 130px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
}

.banner h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 28px;
    letter-spacing: 6px;
}

.banner h1 em {
    font-style: normal;
    color: var(--emerald-light);
}

.banner .intro-text {
    font-size: 1.2rem;
    color: var(--cream-dim);
    max-width: 780px;
    margin: 0 auto 50px;
    font-weight: 300;
}

.primary-btn {
    display: inline-block;
    padding: 18px 60px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: var(--bg-deep);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.25);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(16, 185, 129, 0.35);
}

/* Highlights */
.highlights {
    padding: 90px 35px;
    max-width: 1350px;
    margin: 0 auto;
}

.highlight-cards {
    display: flex;
    gap: 30px;
}

.highlight-card {
    flex: 1;
    background: var(--bg-surface);
    padding: 45px 35px;
    border-radius: 4px;
    border-bottom: 3px solid var(--emerald);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
}

.highlight-card .symbol {
    font-size: 2.8rem;
    margin-bottom: 22px;
}

.highlight-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--emerald-light);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.highlight-card p {
    color: var(--cream-dim);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Game Zone */
.game-zone {
    padding: 110px 35px;
    background: linear-gradient(180deg, transparent, rgba(16, 185, 129, 0.03), transparent);
}

.game-zone h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    text-align: center;
    color: var(--emerald-light);
    margin-bottom: 55px;
    letter-spacing: 3px;
}

.game-embed {
    max-width: 1180px;
    margin: 0 auto;
    background: var(--bg-surface);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.game-embed iframe {
    width: 100%;
    height: 670px;
    border: none;
    border-radius: 4px;
}

/* Why Section */
.why-section {
    padding: 110px 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    text-align: center;
    color: var(--cream);
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.why-item {
    background: var(--bg-surface);
    padding: 35px 30px;
    border-left: 4px solid var(--emerald-dark);
    border-radius: 0 8px 8px 0;
}

.why-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--emerald-light);
    margin-bottom: 12px;
}

.why-item p {
    color: var(--cream-dim);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Footer */
.site-footer {
    background: rgba(8, 18, 13, 0.95);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 65px 35px 45px;
    margin-top: 100px;
}

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

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 55px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: var(--cream-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--emerald-light);
}

.gambling-help {
    padding-top: 35px;
    border-top: 1px solid rgba(16, 185, 129, 0.12);
}

.gambling-help p {
    color: var(--cream-dim);
    font-size: 0.85rem;
    margin-bottom: 18px;
    font-weight: 300;
}

.gambling-help a {
    color: var(--emerald);
    text-decoration: none;
    margin: 0 22px;
    font-size: 0.85rem;
}

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

.copyright {
    margin-top: 40px;
    color: rgba(201, 201, 190, 0.45);
    font-size: 0.8rem;
}

/* Age Popup */
.age-popup {
    position: fixed;
    inset: 0;
    background: rgba(13, 31, 23, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-popup.dismissed {
    display: none;
}

.age-popup-box {
    background: var(--bg-surface);
    border: 2px solid var(--emerald);
    padding: 55px 50px;
    border-radius: 8px;
    text-align: center;
    max-width: 520px;
    margin: 25px;
}

.age-popup-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--emerald-light);
    margin-bottom: 22px;
}

.age-popup-box p {
    color: var(--cream-dim);
    margin-bottom: 35px;
    font-weight: 300;
}

.age-btn-row {
    display: flex;
    gap: 22px;
    justify-content: center;
}

.age-confirm, .age-deny {
    padding: 15px 45px;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.age-confirm {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
    color: var(--bg-deep);
}

.age-deny {
    background: transparent;
    border: 1px solid var(--cream-dim);
    color: var(--cream-dim);
}

.age-confirm:hover, .age-deny:hover {
    transform: scale(1.04);
}

/* Inner Pages */
.inner-content {
    padding: 155px 35px 110px;
    max-width: 980px;
    margin: 0 auto;
}

.inner-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--emerald-light);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.inner-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--emerald);
    margin: 45px 0 18px;
}

.inner-content p {
    color: var(--cream-dim);
    margin-bottom: 20px;
    font-weight: 300;
}

.inner-content ul {
    color: var(--cream-dim);
    margin: 0 0 25px 30px;
    font-weight: 300;
}

.inner-content li {
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 1000px) {
    .highlight-cards {
        flex-direction: column;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-trigger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(13, 31, 23, 0.99);
        flex-direction: column;
        padding: 35px;
        gap: 22px;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(16, 185, 129, 0.25);
    }
    
    .nav-menu.visible {
        transform: translateY(0);
    }
    
    .banner h1 {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
    
    .banner .intro-text {
        font-size: 1.05rem;
    }
    
    .game-embed iframe {
        height: 480px;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 18px;
    }
    
    .age-btn-row {
        flex-direction: column;
    }
}
