* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #10b981;
    --secondary-color: #059669;
    --accent-color: #0d9488;
    --dark-color: #064e3b;
    --text-color: #1f2937;
    --text-light: #4b5563;
    --bg-light: #f0fdf4;
    --bg-white: #ffffff;
    --border-color: #d1d5db;
    --hover-color: #34d399;
    --transition: all 0.35s ease-in-out;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 30px;
}

header {
    background-color: var(--dark-color);
    color: var(--bg-white);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.75rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.site-logo i {
    font-size: 1.9rem;
    color: var(--primary-color);
}

.main-navigation {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
}

.main-navigation a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--bg-white);
    color: var(--bg-white);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.5rem 0.9rem;
    border-radius: 4px;
}

.nav-menu {
    display: none;
    width: 100%;
    background-color: #065f46;
    padding: 1rem 0;
    margin-top: 0.8rem;
}

.nav-menu.active {
    display: block;
}

.nav-menu a {
    display: block;
    color: var(--bg-white);
    text-decoration: none;
    padding: 0.8rem 30px;
    transition: var(--transition);
}

.nav-menu a:hover {
    background-color: rgba(16, 185, 129, 0.15);
    padding-left: 35px;
}

.hero-area {
    background: linear-gradient(90deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 5rem 0 4rem;
    text-align: left;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.92;
    font-weight: 300;
}

.primary-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.8rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 1rem;
}

.primary-btn:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
}

.features-area {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.section-heading {
    text-align: left;
    margin-bottom: 3.5rem;
    max-width: 700px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-block {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-block:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.feature-block i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    display: block;
}

.feature-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-weight: 500;
}

.feature-block p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.98rem;
}

.content-area {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.content-layout {
    display: block;
    max-width: 900px;
}

.content-layout h2 {
    font-size: 2.3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.content-layout p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.85;
    font-size: 1.05rem;
}

.content-visual {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 5rem;
    margin: 2.5rem 0;
}

.benefits-area {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.benefits-list {
    display: block;
    max-width: 900px;
}

.benefit-entry {
    background-color: var(--bg-white);
    padding: 1.8rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.benefit-entry:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefit-entry h3 {
    color: var(--dark-color);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 500;
}

.benefit-entry h3 i {
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.benefit-entry p {
    color: var(--text-light);
    line-height: 1.8;
}

.games-area {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.games-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.game-entry {
    background-color: var(--bg-white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.game-entry:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.game-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 3.5rem;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.game-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.page-wrapper {
    padding: 4rem 0;
    min-height: 70vh;
    max-width: 900px;
    margin: 0 auto;
}

.page-wrapper h1 {
    color: var(--dark-color);
    font-size: 2.6rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.page-wrapper h2 {
    color: var(--dark-color);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.page-wrapper h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.page-wrapper p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
}

.page-wrapper ul,
.page-wrapper ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 2;
}

.page-wrapper li {
    margin-bottom: 0.6rem;
}

.contact-area {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.8rem;
}

.contact-block {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.contact-block h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 500;
}

.contact-block p,
.contact-block a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 2;
    font-size: 1.05rem;
}

.contact-block a:hover {
    color: var(--primary-color);
}

.map-area {
    margin-top: 3rem;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-area iframe {
    width: 100%;
    height: 420px;
    border: none;
}

.error-wrapper {
    padding: 6rem 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-wrapper h1 {
    font-size: 6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.error-wrapper h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.error-wrapper p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.site-footer {
    background-color: var(--dark-color);
    color: var(--bg-white);
    padding: 3.5rem 0 1.2rem;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-block h3 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
}

.footer-block p,
.footer-block a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    line-height: 2.1;
    display: block;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-block a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
}

@media (max-width: 980px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .main-navigation {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .error-wrapper h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 640px) {
    .hero-area {
        padding: 3.5rem 0 2.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .features-wrapper,
    .games-list,
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .page-wrapper h1 {
        font-size: 2rem;
    }

    .error-wrapper h1 {
        font-size: 3.5rem;
    }
}

