@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --gold-primary: #d4af37;
    --gold-light: #f4d03f;
    --purple-deep: #2c1654;
    --purple-mid: #4a1c6b;
    --cream: #faf3e0;
    --dark-text: #1a1a2e;
    --light-text: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-mid) 100%);
    color: var(--light-text);
    line-height: 1.8;
    min-height: 100vh;
}

header {
    background: rgba(44, 22, 84, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.2);
}

.header-wrapper {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-decoration: none;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.desktop-nav {
    display: flex;
    gap: 3rem;
}

.desktop-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--gold-primary);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold-primary);
    transition: 0.3s;
}

.menu-toggle.open span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--purple-deep);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    z-index: 998;
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav a {
    display: block;
    padding: 1rem 2rem;
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.banner-area {
    padding: 150px 2rem 80px;
    text-align: center;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(212,175,55,0.3)"/><circle cx="80" cy="40" r="0.5" fill="rgba(212,175,55,0.2)"/><circle cx="50" cy="70" r="0.8" fill="rgba(212,175,55,0.25)"/></svg>');
}

.welcome-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    color: var(--dark-text);
    padding: 0.6rem 2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.main-headline {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.main-headline em {
    color: var(--gold-primary);
    font-style: normal;
}

.banner-text {
    font-size: 1.2rem;
    color: rgba(250, 243, 224, 0.8);
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.action-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-link {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--dark-text);
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.primary-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.secondary-link {
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.secondary-link:hover {
    background: var(--gold-primary);
    color: var(--dark-text);
}

.info-strip {
    background: var(--cream);
    padding: 3rem 2rem;
}

.info-boxes {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-box {
    background: var(--purple-deep);
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    border-left: 4px solid var(--gold-primary);
}

.info-box-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-box h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-box p {
    font-size: 0.95rem;
    color: rgba(250, 243, 224, 0.9);
}

.game-showcase {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: rgba(250, 243, 224, 0.7);
}

.game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border: 3px solid var(--gold-primary);
    background: var(--purple-deep);
}

.game-wrapper iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.highlights {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.highlight-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.highlight-item {
    background: linear-gradient(145deg, rgba(74, 28, 107, 0.8), rgba(44, 22, 84, 0.9));
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 3px solid var(--gold-primary);
}

.highlight-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: rgba(250, 243, 224, 0.7);
}

footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 4rem 2rem 1.5rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about .brand-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-about p {
    color: rgba(250, 243, 224, 0.7);
    font-size: 0.95rem;
}

.footer-nav h5,
.footer-safety h5 {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-nav a {
    display: block;
    color: rgba(250, 243, 224, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--gold-primary);
}

.footer-safety a {
    display: inline-block;
    color: var(--cream);
    background: rgba(212, 175, 55, 0.2);
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    margin: 0.2rem;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.footer-safety a:hover {
    background: rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(250, 243, 224, 0.5);
    font-size: 0.85rem;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(44, 22, 84, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.age-gate.dismissed {
    display: none;
}

.age-gate-box {
    background: linear-gradient(145deg, var(--purple-mid), var(--purple-deep));
    border: 2px solid var(--gold-primary);
    padding: 3rem;
    max-width: 480px;
    text-align: center;
}

.age-gate-box .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.age-gate-box h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.age-gate-box p {
    margin-bottom: 2rem;
    color: rgba(250, 243, 224, 0.8);
}

.age-gate-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-gate-btns button {
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--dark-text);
}

.btn-deny {
    background: transparent;
    border: 2px solid var(--cream) !important;
    color: var(--cream);
}

.page-container {
    padding: 120px 2rem 60px;
    min-height: 70vh;
}

.page-inner {
    max-width: 900px;
    margin: 0 auto;
}

.page-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.text-section {
    background: rgba(74, 28, 107, 0.5);
    border-left: 4px solid var(--gold-primary);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.text-section h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.text-section p {
    color: rgba(250, 243, 224, 0.85);
    margin-bottom: 0.8rem;
}

.text-section ul {
    padding-left: 1.5rem;
    color: rgba(250, 243, 224, 0.85);
}

.text-section li {
    margin-bottom: 0.4rem;
}

@media (max-width: 900px) {
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .game-wrapper iframe {
        height: 450px;
    }
    
    .age-gate-btns {
        flex-direction: column;
    }
}
