* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #f9fafb;
    color: #1f2937;
    line-height: 1.7;
}

/* Age Overlay */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(5px);
}

.age-overlay.hidden {
    display: none;
}

.age-box {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 0;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
}

.age-symbol {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 30px;
}

.age-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1f2937;
}

.age-message {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #4b5563;
}

.age-info {
    font-size: 1rem;
    margin-bottom: 35px;
    color: #10b981;
    font-weight: 500;
}

.age-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-accept, .age-decline {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.age-accept {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.age-accept:hover {
    background: #059669;
    border-color: #059669;
    transform: translateY(-2px);
}

.age-decline {
    background: transparent;
    border-color: #ef4444;
    color: #ef4444;
}

.age-decline:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.top-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #1f2937;
}

.brand-title {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.brand-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #10b981;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger-line {
    width: 28px;
    height: 2px;
    background: #10b981;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.link-item {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.link-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: width 0.3s ease;
}

.link-item:hover {
    color: #10b981;
}

.link-item:hover::after {
    width: 100%;
}

/* Section Container */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Space */
.hero-space {
    padding: 120px 40px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    position: relative;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.floating-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 8px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.main-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #064e3b;
}

.main-description {
    font-size: 1.3rem;
    margin-bottom: 45px;
    color: #047857;
    line-height: 1.8;
}

.primary-link {
    display: inline-block;
    background: #064e3b;
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.primary-link:hover {
    background: #065f46;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.2);
}

/* Intro Space */
.intro-space {
    padding: 100px 40px;
    background: #ffffff;
}

.intro-columns {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #064e3b;
    line-height: 1.3;
}

.section-title.centered {
    text-align: center;
}

.title-accent {
    width: 80px;
    height: 3px;
    background: #10b981;
    margin-top: 20px;
}

.title-accent.centered {
    margin-left: auto;
    margin-right: auto;
}

.intro-paragraph {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #4b5563;
    line-height: 1.9;
}

/* Values Space */
.values-space {
    padding: 100px 40px;
    background: #f9fafb;
}

.values-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-card {
    background: #ffffff;
    padding: 45px 35px;
    border-top: 4px solid #10b981;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.value-heading {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #064e3b;
    font-weight: 600;
}

.value-text {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.8;
}

/* Game Space */
.game-space {
    padding: 100px 40px;
    background: #ffffff;
}

.game-introduction {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 800px;
    margin: 30px auto 50px;
    line-height: 1.8;
}

.game-display-box {
    background: #f9fafb;
    padding: 30px;
    border: 1px solid #e5e7eb;
    margin-bottom: 30px;
}

.game-embed {
    width: 100%;
    height: 650px;
    border: none;
}

.game-guidance {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    padding: 25px;
    background: #ecfdf5;
    border-left: 3px solid #10b981;
}

/* Principles Space */
.principles-space {
    padding: 100px 40px;
    background: #f9fafb;
}

.principles-box {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 50px;
    border: 1px solid #e5e7eb;
}

.principles-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #064e3b;
    font-weight: 700;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.principle-item {
    text-align: center;
}

.principle-marker {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.principle-title {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #064e3b;
    font-weight: 600;
}

.principle-desc {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.8;
}

/* Distinction Space */
.distinction-space {
    padding: 100px 40px;
    background: #ffffff;
}

.distinction-columns {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.distinction-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.distinction-point {
    display: flex;
    gap: 25px;
    align-items: start;
}

.point-icon {
    width: 40px;
    height: 40px;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #064e3b;
    font-weight: 600;
}

.point-content p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.8;
}

/* Play Page */
.play-header-space {
    padding: 80px 40px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.page-heading {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 20px;
}

.page-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #047857;
    max-width: 900px;
    margin: 30px auto 0;
    line-height: 1.8;
}

.play-game-space {
    padding: 80px 40px;
    background: #ffffff;
}

.play-frame-box {
    background: #f9fafb;
    padding: 30px;
    border: 1px solid #e5e7eb;
}

.play-embed {
    width: 100%;
    height: 750px;
    border: none;
}

.play-guide-space {
    padding: 80px 40px;
    background: #f9fafb;
}

.guide-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.guide-box {
    text-align: center;
}

.guide-step {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.guide-heading {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #064e3b;
    font-weight: 600;
}

.guide-text {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.8;
}

.play-specs-space {
    padding: 80px 40px;
    background: #ffffff;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.spec-card {
    background: #f9fafb;
    padding: 35px;
    border-left: 3px solid #10b981;
}

.spec-heading {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #064e3b;
    font-weight: 600;
}

.spec-text {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.8;
}

.play-reminder-space {
    padding: 80px 40px;
    background: #f9fafb;
}

.reminder-panel {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px;
    border: 2px solid #10b981;
    text-align: center;
}

.reminder-heading {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #064e3b;
    font-weight: 700;
}

.reminder-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.9;
}

/* Legal Pages */
.legal-header-space {
    padding: 80px 40px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.legal-updated {
    text-align: center;
    font-size: 1rem;
    color: #047857;
    margin-top: 15px;
}

.legal-document-space {
    padding: 80px 40px;
    background: #ffffff;
}

.document-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #f9fafb;
    padding: 60px 50px;
    border: 1px solid #e5e7eb;
}

.document-wrapper h2 {
    font-size: 1.8rem;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #064e3b;
    font-weight: 600;
}

.document-wrapper h2:first-child {
    margin-top: 0;
}

.document-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.9;
}

.document-wrapper ul {
    margin-bottom: 25px;
    padding-left: 35px;
    color: #4b5563;
}

.document-wrapper li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background: #064e3b;
    padding: 80px 40px 30px;
    color: #d1fae5;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
}

.footer-description {
    color: #a7f3d0;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    color: #a7f3d0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-list a:hover {
    color: #ffffff;
}

.footer-bar {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a7f3d0;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-burger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 85px;
        right: -100%;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        padding: 40px;
        transition: 0.3s;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .main-heading {
        font-size: 2.8rem;
    }
    
    .intro-columns, .distinction-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .game-embed, .play-embed {
        height: 500px;
    }
    
    .document-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .age-box {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .age-actions {
        flex-direction: column;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .primary-link {
        padding: 15px 35px;
        font-size: 1rem;
    }
}
