@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

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

:root {
    --emerald: #10b981;
    --dark-emerald: #059669;
    --light-emerald: #6ee7b7;
    --charcoal: #1f2937;
    --deep-charcoal: #111827;
    --slate: #334155;
    --light-slate: #64748b;
    --white: #ffffff;
    --off-white: #f1f5f9;
    --accent-teal: #14b8a6;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--deep-charcoal);
    color: var(--off-white);
    min-height: 100vh;
    line-height: 1.8;
}

.status-bar {
    background: var(--emerald);
    padding: 0.6rem;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.main-header {
    background: var(--charcoal);
    border-bottom: 2px solid var(--emerald);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.site-branding {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--emerald), var(--accent-teal));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.brand-name {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--emerald);
    letter-spacing: 1px;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.site-nav a {
    color: var(--off-white);
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.site-nav a:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}

.nav-button {
    display: none;
    background: var(--emerald);
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
}

.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.banner {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(20, 184, 166, 0.1));
    padding: 4rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.banner h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--emerald);
    letter-spacing: -1px;
}

.banner p {
    font-size: 1.4rem;
    color: var(--light-emerald);
    max-width: 750px;
    margin: 0 auto;
}

.content-box {
    background: var(--charcoal);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border: 1px solid var(--slate);
}

.content-box h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    color: var(--emerald);
    font-weight: 700;
}

.content-box h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--light-emerald);
    font-weight: 600;
}

.content-box p {
    margin-bottom: 1.3rem;
    line-height: 1.9;
    color: var(--off-white);
}

.alert {
    background: rgba(16, 185, 129, 0.15);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 5px solid var(--emerald);
    margin: 2.5rem 0;
}

.alert h3 {
    color: var(--emerald);
    margin-top: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.grid-item {
    background: rgba(16, 185, 129, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.grid-item:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
    border-color: var(--emerald);
}

.grid-item h4 {
    color: var(--emerald);
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
}

.game-display {
    background: var(--deep-charcoal);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 2.5rem 0;
    border: 2px solid var(--emerald);
}

.game-display iframe {
    width: 100%;
    max-width: 1000px;
    height: 650px;
    border: none;
    border-radius: 10px;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.feature-box {
    background: rgba(16, 185, 129, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: scale(1.05);
    border-color: var(--emerald);
    background: rgba(16, 185, 129, 0.15);
}

.feature-box .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--emerald);
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
}

.site-footer {
    background: var(--charcoal);
    border-top: 2px solid var(--emerald);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-nav a {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-nav a:hover {
    border-color: var(--emerald);
    background: rgba(16, 185, 129, 0.1);
}

.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.98);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-check.show {
    display: flex;
}

.age-check-box {
    background: var(--charcoal);
    padding: 3.5rem;
    border-radius: 12px;
    max-width: 550px;
    text-align: center;
    border: 3px solid var(--emerald);
}

.age-check-box h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--emerald);
}

.age-check-box p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.age-options {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.age-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

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

.age-btn-confirm:hover {
    background: var(--dark-emerald);
    transform: scale(1.05);
}

.age-btn-deny {
    background: transparent;
    color: var(--off-white);
    border: 2px solid var(--emerald);
}

.age-btn-deny:hover {
    background: rgba(16, 185, 129, 0.1);
}

@media (max-width: 768px) {
    .nav-button {
        display: block;
    }
    
    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--charcoal);
        transition: right 0.3s ease;
        padding: 5rem 2rem;
        border-left: 2px solid var(--emerald);
    }
    
    .site-nav.active {
        right: 0;
    }
    
    .site-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .site-nav a {
        display: block;
        padding: 1.2rem;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .banner p {
        font-size: 1.15rem;
    }
    
    .game-display iframe {
        height: 450px;
    }
    
    .age-check-box {
        margin: 1.5rem;
        padding: 2.5rem;
    }
}
