/* TheKangarooSpin - Modern Minimalist Layout */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --primary-green: #2ecc71;
    --dark-green: #27ae60;
    --accent-teal: #1abc9c;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #2c3e50;
    --text-gray: #7f8c8d;
    --border-color: #ecf0f1;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}

/* Clean Header */
.top-header {
    background: var(--bg-white);
    border-bottom: 2px solid var(--primary-green);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-logo .emoji {
    margin-right: 0.5rem;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Clean Navigation */
.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.primary-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    width: 100%;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--primary-green);
}

/* Mobile Menu Button */
.mobile-btn {
    display: none;
    background: none;
    border: 2px solid var(--primary-green);
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 5px;
}

.mobile-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-green);
    margin: 5px 0;
    transition: 0.3s;
}

/* Content Container */
.content-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero */
.hero-section {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.hero-section h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-teal) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.info-box strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

/* Clean Cards */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.clean-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.clean-card:hover {
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.15);
    transform: translateY(-3px);
}

.clean-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.clean-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.clean-card p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.clean-card ul,
.clean-card ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.clean-card li {
    margin-bottom: 0.5rem;
}

/* Wide Section */
.wide-section {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.wide-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.wide-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wide-section p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.wide-section ul,
.wide-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.wide-section li {
    margin-bottom: 0.5rem;
}

/* Game Display */
.game-display {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.game-display h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.game-display p {
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.game-display iframe {
    width: 100%;
    max-width: 900px;
    height: 600px;
    border: 2px solid var(--primary-green);
    border-radius: 10px;
}

/* Footer */
.clean-footer {
    background: var(--bg-white);
    border-top: 2px solid var(--primary-green);
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-resources {
    margin-bottom: 1.5rem;
}

.footer-resources a {
    color: var(--primary-green);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-resources a:hover {
    color: var(--dark-green);
}

/* Age Gate */
.age-gate-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate-overlay.active {
    display: flex;
}

.age-gate-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--primary-green);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.age-gate-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.age-gate-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.age-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn-group button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.btn-confirm-age {
    background: var(--primary-green);
    color: white;
}

.btn-confirm-age:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.btn-decline-age {
    background: var(--text-gray);
    color: white;
}

.btn-decline-age:hover {
    background: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .primary-nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .primary-nav.active {
        display: block;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }

    .primary-nav a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .primary-nav a::after {
        display: none;
    }

    .mobile-btn {
        display: block;
    }

    .brand-logo h1 {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 2.5rem 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .card-container {
        grid-template-columns: 1fr;
    }

    .game-display iframe {
        height: 450px;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-btn-group {
        flex-direction: column;
    }

    .age-btn-group button {
        width: 100%;
    }
}
