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

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

:root {
    --grape: #6b21a8;
    --violet: #8b5cf6;
    --rose: #f472b6;
    --cream: #faf5ff;
    --midnight: #1e1b4b;
    --pearl: #ffffff;
}

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

header {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--grape) 100%);
    padding: 1rem 2.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-logo svg {
    width: 50px;
    height: 50px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--pearl);
}

.navigation {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.navigation a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.navigation a:hover {
    color: var(--rose);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 28px;
    height: 3px;
    background: var(--rose);
    border-radius: 2px;
}

.hero-section {
    background: linear-gradient(180deg, var(--grape) 0%, var(--violet) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(244, 114, 182, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 40%);
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--pearl);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.info-pills {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
    color: var(--pearl);
    font-weight: 600;
}

.game-showcase {
    padding: 5rem 2rem;
    background: var(--pearl);
}

.game-showcase h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.5rem;
    color: var(--grape);
    margin-bottom: 2rem;
}

.game-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(107, 33, 168, 0.3);
}

.game-wrapper iframe {
    width: 100%;
    height: 680px;
    border: none;
    display: block;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--midnight);
}

.benefit-item {
    padding: 3.5rem 2rem;
    text-align: center;
    color: var(--pearl);
    border-right: 1px solid rgba(139, 92, 246, 0.3);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-item .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--rose);
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.page-content {
    padding: 5rem 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.page-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--grape);
    margin-bottom: 2rem;
    text-align: center;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--violet);
    margin: 2.5rem 0 1rem;
}

.page-content p {
    color: var(--midnight);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.page-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.page-content li {
    color: var(--midnight);
    margin-bottom: 0.7rem;
}

.about-section {
    background: linear-gradient(135deg, var(--cream) 0%, #f3e8ff 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--grape);
    margin-bottom: 2rem;
}

.about-section p {
    max-width: 850px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--midnight);
}

footer {
    background: var(--midnight);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--rose);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--violet);
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.verify-modal {
    position: fixed;
    inset: 0;
    background: rgba(30, 27, 75, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.verify-modal.hidden {
    display: none;
}

.verify-box {
    background: var(--pearl);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 480px;
    margin: 1rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.verify-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--grape);
    margin-bottom: 1.5rem;
}

.verify-box p {
    color: var(--midnight);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.verify-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.verify-btn {
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.verify-btn.confirm {
    background: linear-gradient(135deg, var(--grape), var(--violet));
    color: white;
}

.verify-btn.confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(107, 33, 168, 0.4);
}

.verify-btn.deny {
    background: transparent;
    border: 2px solid var(--rose);
    color: var(--rose);
}

.verify-btn.deny:hover {
    background: var(--rose);
    color: white;
}

.play-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, #f3e8ff 100%);
}

.play-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--grape);
    margin-bottom: 1rem;
}

.play-info {
    text-align: center;
    color: var(--midnight);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .benefits-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-item {
        border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    }
    
    .benefit-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--midnight);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-200%);
        transition: transform 0.4s;
    }
    
    .navigation.open {
        transform: translateY(0);
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1.05rem;
    }
    
    .info-pills {
        flex-direction: column;
        align-items: center;
    }
    
    .game-wrapper iframe {
        height: 420px;
    }
    
    .benefits-row {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        border-right: none;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .verify-actions {
        flex-direction: column;
    }
}
