@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;500;600&display=swap');

:root {
    --luminex-orange: #FF6B35;
    --luminex-cream: #FFF8F0;
    --dark-charcoal: #1A1A2E;
    --warm-gray: #4A4A5E;
    --soft-peach: #FFE5D9;
    --accent-coral: #FF8B6A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--luminex-cream);
    color: var(--dark-charcoal);
    line-height: 1.8;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.site-header {
    background: var(--dark-charcoal);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrap {
    max-width: 1700px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-link svg {
    width: 45px;
    height: 45px;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--luminex-orange);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-navigation a {
    color: var(--luminex-cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--luminex-orange);
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--luminex-orange);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--luminex-orange);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

.landing-hero {
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--warm-gray) 100%);
    padding: 6rem 2rem;
    position: relative;
}

.hero-layout {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-left {
    flex: 1;
}

.age-tag {
    display: inline-block;
    background: var(--luminex-orange);
    color: var(--luminex-cream);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--luminex-cream);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-left h1 em {
    color: var(--luminex-orange);
    font-style: normal;
}

.hero-left p {
    font-size: 1.15rem;
    color: var(--soft-peach);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.primary-btn {
    display: inline-block;
    background: var(--luminex-orange);
    color: var(--luminex-cream);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.hero-right {
    flex: 0 0 350px;
}

.stat-card {
    background: rgba(255, 248, 240, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.stat-card .emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.stat-card h3 {
    color: var(--luminex-orange);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--soft-peach);
}

.info-strip {
    background: var(--luminex-cream);
    padding: 5rem 2rem;
}

.info-cards {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(26, 26, 46, 0.08);
    border-top: 4px solid var(--luminex-orange);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--soft-peach);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    color: var(--dark-charcoal);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

.game-highlight {
    background: var(--dark-charcoal);
    padding: 5rem 2rem;
}

.game-highlight-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head h2 {
    font-size: 2.5rem;
    color: var(--luminex-cream);
    margin-bottom: 1rem;
}

.section-head p {
    color: var(--soft-peach);
    max-width: 600px;
    margin: 0 auto;
}

.game-box {
    background: var(--warm-gray);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.game-box iframe {
    width: 100%;
    height: 580px;
    border: none;
    border-radius: 12px;
}

.features-block {
    background: var(--soft-peach);
    padding: 5rem 2rem;
}

.features-inner {
    max-width: 1700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-row {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-row .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luminex-orange);
    opacity: 0.5;
    line-height: 1;
}

.feature-row h4 {
    color: var(--dark-charcoal);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.feature-row p {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.site-footer {
    background: var(--dark-charcoal);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--soft-peach);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-section h4 {
    color: var(--luminex-orange);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--soft-peach);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--luminex-orange);
}

.footer-bottom {
    max-width: 1700px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 248, 240, 0.1);
}

.footer-bottom p {
    color: var(--soft-peach);
    font-size: 0.85rem;
}

.age-popup {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.age-popup.hidden {
    display: none;
}

.popup-box {
    background: var(--luminex-cream);
    border-radius: 20px;
    padding: 3rem;
    max-width: 480px;
    text-align: center;
}

.popup-box h2 {
    color: var(--dark-charcoal);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.popup-box p {
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.popup-actions button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--luminex-orange);
    border: none;
    color: var(--luminex-cream);
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-decline {
    background: transparent;
    border: 2px solid var(--warm-gray);
    color: var(--warm-gray);
}

.btn-decline:hover {
    border-color: var(--dark-charcoal);
    color: var(--dark-charcoal);
}

.text-page {
    padding: 5rem 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.text-page h1 {
    font-size: 2.5rem;
    color: var(--dark-charcoal);
    text-align: center;
    margin-bottom: 3rem;
}

.text-page h2 {
    color: var(--luminex-orange);
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
}

.text-page p {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
}

.text-page ul {
    color: var(--warm-gray);
    margin: 1rem 0 1.5rem 2rem;
}

.text-page li {
    margin-bottom: 0.5rem;
}

.play-section {
    padding: 3rem 2rem 5rem;
    background: var(--luminex-cream);
}

.play-section h1 {
    text-align: center;
    color: var(--dark-charcoal);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.play-section > p {
    text-align: center;
    color: var(--warm-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

@media (max-width: 1024px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-right {
        display: none;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--dark-charcoal);
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .main-navigation.active {
        transform: translateY(0);
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .header-wrap {
        padding: 1rem;
    }

    .brand-title {
        font-size: 1.3rem;
    }

    .game-box iframe {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
