/*
 * PROJECT: anorabown.com
 * DOMAIN: anorabown.com
 * GAME: Stick Jump
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Эко-натурал (#2d6a4f green, #d4a373 kraft)
 * - Effect: Pattern Backgrounds
 * - Fonts: Merriweather (heading) + Cabin (body)
 * - Buttons: 3D Effect
 *
 * Created: 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Cabin:wght@400;500;600;700&display=swap');

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden !important;
}

:root {
    --forest-green: #2d6a4f;
    --forest-green-dark: #1b4332;
    --forest-green-light: #52b788;
    --forest-green-pale: #b7e4c7;
    --kraft-tan: #d4a373;
    --kraft-tan-light: #e9c46a;
    --kraft-tan-dark: #a47149;
    --cream: #fefae0;
    --warm-white: #f8f4e8;
    --bark-brown: #6b4226;
    --deep-earth: #3d2b1f;
    --stone-gray: #8a9b8e;
    --light-stone: #d8e8dc;

    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Cabin', Arial, sans-serif;

    --shadow-sm: 0 2px 6px rgba(45, 106, 79, 0.12);
    --shadow-md: 0 4px 16px rgba(45, 106, 79, 0.18);
    --shadow-lg: 0 8px 32px rgba(45, 106, 79, 0.22);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
    --header-height: 70px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--deep-earth);
    background-color: var(--cream);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(45,106,79,0.07) 1px, transparent 0);
    background-size: 28px 28px;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--forest-green);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--forest-green-light);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--forest-green-dark);
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ===================== MANDATORY RULES ===================== */
.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.article-card,
.offer-card,
.card {
    position: relative;
}

.stars {
    color: #ffc107;
}

/* ===================== LAYOUT ===================== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section--alt {
    background-color: var(--warm-white);
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 12px,
            rgba(45,106,79,0.04) 12px,
            rgba(45,106,79,0.04) 13px
        );
}

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__title {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--forest-green-dark);
}

.section__subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--stone-gray);
    max-width: 540px;
    margin: 0 auto;
}

/* ===================== HEADER ===================== */
.site-header {
    background-color: var(--forest-green-dark);
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(255,255,255,0.03) 20px,
            rgba(255,255,255,0.03) 21px
        );
    box-shadow: 0 2px 12px rgba(27, 67, 50, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--kraft-tan);
    letter-spacing: -0.5px;
    transition: color var(--transition);
}

.logo:hover {
    color: var(--kraft-tan-light);
}

/* ===================== NAV ===================== */
.site-nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav__link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest-green-pale);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
    letter-spacing: 0.3px;
}

.site-nav__link:hover,
.site-nav__link--active {
    background: rgba(212, 163, 115, 0.18);
    color: var(--kraft-tan-light);
}

/* ===================== HAMBURGER ===================== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 2px solid var(--kraft-tan);
    border-radius: var(--radius);
    cursor: pointer;
    gap: 5px;
    padding: 6px;
}

.nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--kraft-tan);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
    padding: 13px 28px;
    text-decoration: none;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 16px 40px;
    border-radius: var(--radius);
    background-color: var(--kraft-tan);
    color: var(--forest-green-dark);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 0 var(--kraft-tan-dark), 0 8px 16px rgba(164, 113, 73, 0.35);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 var(--kraft-tan-dark), 0 12px 24px rgba(164, 113, 73, 0.45);
    color: var(--forest-green-dark);
}

.btn-play:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 var(--kraft-tan-dark), 0 4px 8px rgba(164, 113, 73, 0.3);
}

.btn--primary {
    background-color: var(--forest-green);
    color: #fff;
    box-shadow: 0 5px 0 var(--forest-green-dark), 0 7px 14px rgba(45, 106, 79, 0.3);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 var(--forest-green-dark), 0 10px 20px rgba(45, 106, 79, 0.4);
    color: #fff;
}

.btn--primary:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--forest-green-dark);
}

.btn--outline {
    background: transparent;
    color: var(--forest-green-pale);
    border: 2px solid var(--forest-green-pale);
    box-shadow: 0 4px 0 rgba(183, 228, 199, 0.3);
}

.btn--outline:hover {
    background: var(--forest-green-pale);
    color: var(--forest-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(183, 228, 199, 0.4);
}

/* ===================== HERO ===================== */
.hero {
    background-color: var(--forest-green-dark);
    background-image:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(82, 183, 136, 0.15) 0%, transparent 60%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 18px,
            rgba(255,255,255,0.02) 18px,
            rgba(255,255,255,0.02) 19px
        );
    padding: 90px 0;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--forest-green-light);
    margin-bottom: 16px;
    display: block;
}

.hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__title span {
    color: var(--kraft-tan);
}

.hero__description {
    font-size: 1.05rem;
    color: var(--forest-green-pale);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__meta {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--stone-gray);
}

.hero__meta-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--kraft-tan-light);
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__game-preview {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero__game-frame {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(212, 163, 115, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero__game-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero__game-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 8px;
}

.hero__game-desc {
    font-size: 0.9rem;
    color: var(--forest-green-pale);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero__game-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 163, 115, 0.15);
    border: 1px solid rgba(212, 163, 115, 0.4);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--kraft-tan);
    margin-bottom: 20px;
}

/* ===================== FEATURES ===================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--light-stone);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--kraft-tan));
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    background: var(--light-stone);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.feature-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest-green-dark);
    margin-bottom: 10px;
}

.feature-card__text {
    font-size: 0.92rem;
    color: var(--stone-gray);
    line-height: 1.65;
    margin: 0;
}

/* ===================== HOW TO PLAY PREVIEW ===================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 28px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-stone);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-card__number {
    width: 48px;
    height: 48px;
    background: var(--forest-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 900;
    margin: 0 auto 16px;
    box-shadow: 0 4px 0 var(--forest-green-dark);
}

.step-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--forest-green-dark);
}

.step-card__text {
    font-size: 0.87rem;
    color: var(--stone-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===================== ARTICLE CARDS ===================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--light-stone);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article-card__thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.6);
    overflow: hidden;
}

.article-card__thumb--alt1 {
    background: linear-gradient(135deg, var(--kraft-tan-dark) 0%, var(--kraft-tan) 100%);
}

.article-card__thumb--alt2 {
    background: linear-gradient(135deg, var(--forest-green-dark) 0%, var(--forest-green) 100%);
}

.article-card__content {
    padding: 24px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.article-card__category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--forest-green);
    background: var(--light-stone);
    padding: 3px 10px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.article-card__date {
    font-size: 0.78rem;
    color: var(--stone-gray);
}

.article-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--forest-green-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color var(--transition);
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.article-card:hover .article-card__title {
    color: var(--forest-green);
}

.article-card__excerpt {
    font-size: 0.87rem;
    color: var(--stone-gray);
    line-height: 1.65;
    margin: 0;
}

.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ===================== FAQ ===================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--light-stone);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--forest-green-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background var(--transition);
}

.faq-item__question:hover {
    background: var(--light-stone);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--forest-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    transition: transform var(--transition), background var(--transition);
}

.faq-item--open .faq-item__icon {
    transform: rotate(45deg);
    background: var(--kraft-tan-dark);
}

.faq-item__answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--stone-gray);
    line-height: 1.75;
    border-top: 1px solid var(--light-stone);
}

.faq-item--open .faq-item__answer {
    display: block;
}

/* ===================== GAME CTA ===================== */
.game-cta {
    background-color: var(--forest-green);
    background-image:
        radial-gradient(ellipse 60% 80% at 30% 50%, rgba(82, 183, 136, 0.2) 0%, transparent 60%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 15px,
            rgba(255,255,255,0.03) 15px,
            rgba(255,255,255,0.03) 16px
        );
    padding: 90px 0;
    text-align: center;
    color: #fff;
}

.game-cta__title {
    font-size: 2.2rem;
    color: var(--cream);
    margin-bottom: 16px;
}

.game-cta__text {
    font-size: 1.05rem;
    color: var(--forest-green-pale);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--deep-earth);
    color: var(--stone-gray);
    padding: 60px 0 0;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand__logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--kraft-tan);
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
}

.footer-brand__tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--stone-gray);
    margin: 0;
}

.footer-col__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 18px;
}

.footer-nav__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav__link {
    font-size: 0.88rem;
    color: var(--stone-gray);
    transition: color var(--transition);
}

.footer-nav__link:hover {
    color: var(--kraft-tan);
}

.site-footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(138, 155, 142, 0.6);
}

/* ===================== PAGE HERO ===================== */
.page-hero {
    background: var(--forest-green-dark);
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255,255,255,0.02) 20px,
            rgba(255,255,255,0.02) 21px
        );
    padding: 70px 0;
    text-align: center;
    color: var(--cream);
}

.page-hero__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--cream);
    margin-bottom: 12px;
}

.page-hero__subtitle {
    font-size: 1rem;
    color: var(--forest-green-pale);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs {
    padding: 14px 0;
    border-bottom: 1px solid var(--light-stone);
    background: var(--warm-white);
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--stone-gray);
}

.breadcrumbs__item a {
    color: var(--forest-green);
    font-weight: 600;
}

.breadcrumbs__item a:hover {
    color: var(--forest-green-light);
}

.breadcrumbs__separator {
    color: var(--stone-gray);
    opacity: 0.5;
}

/* ===================== ABOUT PAGE ===================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content__text h2 {
    font-size: 1.6rem;
    color: var(--forest-green-dark);
    margin-bottom: 18px;
}

.about-content__text p {
    color: var(--stone-gray);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--light-stone);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-green), var(--kraft-tan));
}

.stat-card__number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--forest-green);
    margin-bottom: 6px;
    line-height: 1;
}

.stat-card__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--stone-gray);
    letter-spacing: 0.5px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-stone);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.team-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}

.team-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--forest-green-dark);
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 0.82rem;
    color: var(--kraft-tan-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===================== HOW TO PLAY PAGE ===================== */
.htp-steps {
    max-width: 860px;
    margin: 0 auto;
}

.htp-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 28px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid var(--light-stone);
}

.htp-step:last-child {
    border-bottom: none;
}

.htp-step__number {
    width: 60px;
    height: 60px;
    background: var(--forest-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 0 var(--forest-green-dark);
}

.htp-step__title {
    font-size: 1.2rem;
    color: var(--forest-green-dark);
    margin-bottom: 10px;
}

.htp-step__text {
    color: var(--stone-gray);
    line-height: 1.75;
    margin: 0;
}

.controls-box {
    background: var(--forest-green-dark);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #fff;
    margin-bottom: 60px;
}

.controls-box__title {
    font-size: 1.4rem;
    color: var(--kraft-tan);
    margin-bottom: 24px;
    text-align: center;
}

.controls-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 16px 18px;
}

.control-item__key {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--kraft-tan);
    color: var(--forest-green-dark);
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 3px 0 var(--kraft-tan-dark);
    flex-shrink: 0;
}

.control-item__desc {
    font-size: 0.88rem;
    color: var(--forest-green-pale);
    line-height: 1.5;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.tip-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--light-stone);
    border-left: 4px solid var(--forest-green);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.tip-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--forest-green-dark);
    margin-bottom: 8px;
}

.tip-card__text {
    font-size: 0.87rem;
    color: var(--stone-gray);
    line-height: 1.65;
    margin: 0;
}

/* ===================== BLOG PAGE ===================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ===================== ARTICLE PAGE ===================== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.article-body h2 {
    font-size: 1.5rem;
    color: var(--forest-green-dark);
    margin: 36px 0 14px;
}

.article-body h3 {
    font-size: 1.2rem;
    color: var(--forest-green);
    margin: 28px 0 12px;
}

.article-body p {
    color: var(--stone-gray);
    line-height: 1.85;
    margin-bottom: 18px;
}

.article-body ul,
.article-body ol {
    list-style: initial;
    padding-left: 24px;
    margin-bottom: 18px;
}

.article-body ul li,
.article-body ol li {
    color: var(--stone-gray);
    line-height: 1.75;
    margin-bottom: 6px;
}

.article-header {
    margin-bottom: 36px;
}

.article-header__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.article-header__category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--forest-green);
    background: var(--light-stone);
    padding: 4px 12px;
    border-radius: 20px;
}

.article-header__date {
    font-size: 0.82rem;
    color: var(--stone-gray);
}

.article-header__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--forest-green-dark);
    margin-bottom: 12px;
}

.article-header__lead {
    font-size: 1.05rem;
    color: var(--stone-gray);
    line-height: 1.75;
    margin: 0;
}

.article-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid var(--light-stone);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--forest-green-dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-stone);
}

.sidebar-article {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-stone);
}

.sidebar-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-article__thumb {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--forest-green), var(--forest-green-light));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.sidebar-article__title {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--forest-green-dark);
    line-height: 1.4;
    transition: color var(--transition);
}

.sidebar-article__title:hover {
    color: var(--forest-green);
}

.sidebar-article__date {
    font-size: 0.75rem;
    color: var(--stone-gray);
    margin-top: 3px;
    display: block;
}

/* ===================== CONTACT PAGE ===================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info__title {
    font-size: 1.5rem;
    color: var(--forest-green-dark);
    margin-bottom: 18px;
}

.contact-info__text {
    color: var(--stone-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--light-stone);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail__icon {
    width: 40px;
    height: 40px;
    background: var(--light-stone);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--forest-green);
    margin-bottom: 2px;
}

.contact-detail__value {
    font-size: 0.9rem;
    color: var(--stone-gray);
    margin: 0;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--light-stone);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--forest-green-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--light-stone);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--deep-earth);
    background: var(--warm-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

/* ===================== PRIVACY / TERMS ===================== */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--forest-green-dark);
    margin: 40px 0 14px;
}

.legal-content p {
    color: var(--stone-gray);
    line-height: 1.85;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 18px;
}

.legal-content ul li {
    color: var(--stone-gray);
    line-height: 1.75;
    margin-bottom: 6px;
}

/* ===================== COOKIE CONSENT ===================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-earth);
    border-top: 3px solid var(--forest-green);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
}

.cookie-banner--visible {
    display: block;
}

.cookie-banner__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 0.88rem;
    color: var(--stone-gray);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-banner__text a {
    color: var(--kraft-tan);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background: var(--forest-green);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 0 var(--forest-green-dark);
    transition: transform var(--transition), box-shadow var(--transition);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--forest-green-dark);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--stone-gray);
    border: 1px solid rgba(138,155,142,0.4);
    border-radius: var(--radius);
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
}

.cookie-btn-decline:hover {
    color: var(--cream);
    border-color: var(--cream);
}

/* ===================== UTILITIES ===================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--kraft-tan));
    border-radius: 2px;
    margin: 16px auto 0;
}

.divider--left {
    margin: 16px 0 0;
}

.tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.tag--green {
    background: var(--light-stone);
    color: var(--forest-green);
}

.tag--tan {
    background: rgba(212, 163, 115, 0.15);
    color: var(--kraft-tan-dark);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(45,106,79,0.08), rgba(212,163,115,0.1));
    border-left: 4px solid var(--forest-green);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.highlight-box p {
    color: var(--forest-green-dark);
    font-weight: 500;
    margin: 0;
    line-height: 1.7;
}

/* ===================== SUCCESS MESSAGE ===================== */
.form-success {
    display: none;
    background: linear-gradient(135deg, rgba(45,106,79,0.1), rgba(82,183,136,0.08));
    border: 1px solid var(--forest-green-light);
    border-radius: var(--radius);
    padding: 16px 20px;
    color: var(--forest-green-dark);
    font-weight: 600;
    font-size: 0.92rem;
    margin-top: 16px;
    text-align: center;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

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

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

    .hero__inner {
        gap: 40px;
    }

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

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__meta {
        justify-content: center;
    }

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

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

    .articles-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .controls-list {
        grid-template-columns: 1fr;
    }

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

    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: var(--forest-green-dark);
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 16px;
        z-index: 99;
    }

    .site-nav--open {
        display: block;
    }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .site-nav__link {
        display: block;
        padding: 12px 16px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero__game-preview {
        max-width: 300px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .game-cta__title {
        font-size: 1.7rem;
    }
}