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

body {
    font-family: 'Nunito', sans-serif;
    background: #FAFAFA;
    color: #2C3E50;
    line-height: 1.7;
}

.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-modal.visible {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    padding: 50px 45px;
    border-radius: 12px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.modal-icon {
    font-size: 4.5em;
    margin-bottom: 25px;
}

.modal-content h2 {
    font-family: 'Lora', serif;
    font-size: 2em;
    color: #88C9A1;
    margin-bottom: 20px;
    font-weight: 700;
}

.modal-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05em;
}

.modal-note {
    font-size: 0.9em !important;
    color: #888 !important;
    font-style: italic;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-primary, .btn-secondary {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.btn-primary {
    background: #88C9A1;
    color: white;
}

.btn-primary:hover {
    background: #6FB388;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(136, 201, 161, 0.3);
}

.btn-secondary {
    background: #ECF0F1;
    color: #7F8C8D;
}

.btn-secondary:hover {
    background: #D5DBDB;
}

.layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background: #FFFFFF;
    padding: 22px 0;
    border-bottom: 1px solid #E8E8E8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: 'Lora', serif;
    font-size: 1.7em;
    font-weight: 700;
    color: #88C9A1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #88C9A1;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navigation {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #2C3E50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #88C9A1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #88C9A1;
    transition: width 0.3s ease;
}

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

main {
    flex: 1;
}

.hero {
    background: linear-gradient(135deg, #88C9A1 0%, #6FB388 100%);
    padding: 120px 30px;
    text-align: center;
    color: white;
}

.hero-container h1 {
    font-family: 'Lora', serif;
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-desc {
    font-size: 1.4em;
    margin-bottom: 45px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: white;
    color: #88C9A1;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 30px;
}

.introduction {
    background: #FFFFFF;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2.8em;
    color: #88C9A1;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 1.15em;
    line-height: 1.9;
    color: #5D6D7E;
    margin-bottom: 22px;
}

.game-display {
    background: #F5F8F7;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15em;
    color: #7F8C8D;
    margin-bottom: 45px;
}

.game-embed-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #E0E0E0;
}

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

.highlights {
    background: #FFFFFF;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.highlight-item {
    padding: 45px 35px;
    background: #F5F8F7;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(136, 201, 161, 0.15);
}

.highlight-icon {
    font-size: 4em;
    margin-bottom: 22px;
}

.highlight-item h3 {
    font-family: 'Lora', serif;
    font-size: 1.5em;
    color: #88C9A1;
    margin-bottom: 18px;
    font-weight: 700;
}

.highlight-item p {
    color: #5D6D7E;
    line-height: 1.7;
}

.features {
    background: #F5F8F7;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.feature {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 35px;
    background: white;
    border-radius: 10px;
    border: 1px solid #E8E8E8;
    transition: all 0.3s ease;
}

.feature:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-num {
    font-family: 'Lora', serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #88C9A1;
    line-height: 1;
    flex-shrink: 0;
}

.feature-info h4 {
    font-family: 'Lora', serif;
    font-size: 1.3em;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-info p {
    color: #7F8C8D;
    line-height: 1.6;
}

.final-call {
    background: linear-gradient(135deg, #88C9A1 0%, #6FB388 100%);
    padding: 110px 30px;
    text-align: center;
    color: white;
}

.final-call h2 {
    font-family: 'Lora', serif;
    font-size: 3em;
    margin-bottom: 22px;
    font-weight: 700;
}

.final-call p {
    font-size: 1.25em;
    margin-bottom: 45px;
    opacity: 0.95;
}

.footer {
    background: #2C3E50;
    color: #BDC3C7;
    padding: 65px 30px 30px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
    margin-bottom: 35px;
}

.footer-section h3 {
    font-family: 'Lora', serif;
    color: #88C9A1;
    margin-bottom: 20px;
    font-size: 1.35em;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 18px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #88C9A1;
}

.footer-copyright {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95A5A6;
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 71px;
        right: -100%;
        width: 270px;
        height: calc(100vh - 71px);
        background: white;
        flex-direction: column;
        padding: 35px 25px;
        transition: right 0.3s ease;
        box-shadow: -3px 0 15px rgba(0, 0, 0, 0.1);
    }

    .navigation.open {
        right: 0;
    }

    .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid #E8E8E8;
    }

    .hero-container h1 {
        font-size: 2.5em;
    }

    .hero-desc {
        font-size: 1.15em;
    }

    .section-title {
        font-size: 2.2em;
    }

    .game-embed {
        height: 450px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .feature {
        flex-direction: column;
        text-align: center;
    }

    .modal-buttons {
        flex-direction: column;
    }
}

.page-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 75px 30px;
    background: white;
    min-height: calc(100vh - 200px);
}

.page-wrapper h1 {
    font-family: 'Lora', serif;
    font-size: 3.2em;
    color: #88C9A1;
    margin-bottom: 10px;
    font-weight: 700;
}

.date-info {
    color: #95A5A6;
    margin-bottom: 40px;
}

.page-wrapper h2 {
    font-family: 'Lora', serif;
    font-size: 1.9em;
    color: #88C9A1;
    margin-top: 38px;
    margin-bottom: 18px;
    font-weight: 700;
}

.page-wrapper p {
    color: #5D6D7E;
    line-height: 1.8;
    margin-bottom: 20px;
}

.play-section-header {
    background: linear-gradient(135deg, #88C9A1 0%, #6FB388 100%);
    padding: 90px 30px;
    text-align: center;
    color: white;
}

.play-section-header h1 {
    font-family: 'Lora', serif;
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.play-text {
    font-size: 1.25em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.play-area {
    padding: 75px 30px;
    background: #FAFAFA;
}

.game-notes {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 38px;
    background: white;
    border-radius: 10px;
    border: 1px solid #E8E8E8;
}

.game-notes h3 {
    font-family: 'Lora', serif;
    font-size: 1.6em;
    color: #88C9A1;
    margin-bottom: 18px;
    font-weight: 700;
}

.game-notes p {
    color: #7F8C8D;
    line-height: 1.7;
    margin-bottom: 15px;
}