@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gradient-start: #667eea;
    --gradient-end: #f093fb;
    --deep-purple: #1a1033;
    --card-purple: #2d1f4e;
    --light-purple: #b794f6;
    --white: #ffffff;
    --soft-white: #f5f3ff;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--deep-purple);
    color: var(--soft-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

/* Floating Background Elements */
.bg-decoration {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-decoration.one {
    background: var(--gradient-start);
    top: -200px;
    right: -200px;
}

.bg-decoration.two {
    background: var(--gradient-end);
    bottom: -300px;
    left: -200px;
}

/* Navigation */
.main-nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 18px 30px;
    background: rgba(26, 16, 51, 0.9);
    backdrop-filter: blur(15px);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 42px;
    height: 42px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--light-purple);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section - Centered Approach */
.hero-area {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 30px 80px;
    position: relative;
    z-index: 1;
}

.hero-area h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-area h1 .highlight {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-area > p {
    max-width: 650px;
    font-size: 1.15rem;
    color: var(--light-purple);
    margin-bottom: 40px;
}

.legal-notices {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.notice-pill {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border: 1px solid rgba(183, 148, 246, 0.4);
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* Game Section */
.game-showcase {
    padding: 80px 30px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--light-purple);
}

.game-embed {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--card-purple);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(183, 148, 246, 0.2);
}

.game-embed iframe {
    width: 100%;
    height: 580px;
    border: none;
    display: block;
}

/* Benefits Strip */
.benefits-strip {
    padding: 70px 30px;
    background: linear-gradient(180deg, transparent, rgba(45, 31, 78, 0.5), transparent);
    position: relative;
    z-index: 1;
}

.benefits-row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 35px 25px;
    background: rgba(45, 31, 78, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(183, 148, 246, 0.15);
    transition: 0.3s;
}

.benefit-item:hover {
    background: rgba(45, 31, 78, 0.9);
    transform: scale(1.02);
}

.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.benefit-item p {
    color: var(--light-purple);
    font-size: 0.95rem;
}

/* Intro Text */
.intro-block {
    padding: 80px 30px;
    position: relative;
    z-index: 1;
}

.intro-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-inner h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 25px;
}

.intro-inner p {
    color: var(--light-purple);
    font-size: 1.05rem;
    margin-bottom: 18px;
}

/* Footer */
.site-footer {
    background: rgba(26, 16, 51, 0.95);
    padding: 50px 30px 25px;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(183, 148, 246, 0.15);
}

.footer-center {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gambling-help h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-purple);
    margin-bottom: 15px;
}

.gambling-help a {
    color: var(--soft-white);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.gambling-help a:hover {
    color: var(--gradient-end);
}

.footer-text {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(183, 148, 246, 0.1);
    color: var(--light-purple);
    font-size: 0.85rem;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(26, 16, 51, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate.dismissed {
    display: none;
}

.age-gate-box {
    background: var(--card-purple);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 450px;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--card-purple), var(--card-purple)), linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.age-gate-box h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 18px;
}

.age-gate-box p {
    color: var(--light-purple);
    margin-bottom: 30px;
}

.age-gate-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-enter, .btn-leave {
    padding: 14px 35px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-enter {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
}

.btn-leave {
    background: rgba(183, 148, 246, 0.2);
    color: var(--soft-white);
}

.btn-enter:hover, .btn-leave:hover {
    transform: scale(1.05);
}

/* Content Pages */
.page-hero {
    padding: 150px 30px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--white);
}

.text-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 30px;
    position: relative;
    z-index: 1;
}

.text-content h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 40px 0 18px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-content p {
    color: var(--light-purple);
    margin-bottom: 15px;
}

.text-content ul {
    color: var(--light-purple);
    padding-left: 25px;
    margin-bottom: 15px;
}

.text-content li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .benefits-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--deep-purple);
        flex-direction: column;
        padding: 25px;
        gap: 15px;
        display: none;
    }
    
    .nav-links.visible {
        display: flex;
    }
    
    .hero-area h1 {
        font-size: 2.3rem;
    }
    
    .legal-notices {
        flex-direction: column;
        align-items: center;
    }
    
    .game-embed iframe {
        height: 400px;
    }
    
    .age-gate-box {
        margin: 20px;
        padding: 35px 25px;
    }
}
