/*
 * PROJECT: garfieldnort
 * DOMAIN: garfieldnort.com
 * GAME: Super Ninja Adventure
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Infographic (white bg, #4361ee, #f72585, Barlow/Noto Sans)
 * - Effect: Brutalism (bold borders, offset shadows)
 * - Fonts: Barlow Condensed (heading) + Noto Sans (body)
 * - Buttons: 3D Effect
 *
 * Created: 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Noto+Sans:wght@400;500;600;700&display=swap');

:root {
    --ninja-blue: #4361ee;
    --ninja-pink: #f72585;
    --shadow-dark: #1a1a2e;
    --accent-yellow: #f9c74f;
    --accent-green: #43aa8b;
    --bg-white: #ffffff;
    --bg-light: #f4f6ff;
    --bg-section: #eef0fb;
    --text-dark: #1a1a2e;
    --text-mid: #3a3a5c;
    --text-light: #6b6b8a;
    --border-color: #1a1a2e;
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Noto Sans', sans-serif;
    --radius: 4px;
    --shadow-brutal: 4px 4px 0 var(--border-color);
    --shadow-brutal-lg: 6px 6px 0 var(--border-color);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden !important; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 2rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* ===================== MANDATORY RULES ===================== */
.article-card,
.offer-card,
.card { position: relative; }

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

.stars { color: #ffc107; }

/* ===================== LAYOUT ===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--alt { background: var(--bg-section); }
.section--dark {
    background: var(--shadow-dark);
    color: #fff;
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.75); }

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}
.section__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bg-white);
    background: var(--ninja-pink);
    padding: 0.25rem 0.75rem;
    border: 2px solid var(--border-color);
    margin-bottom: 0.75rem;
}
.section__title { margin-bottom: 0.75rem; }
.section__desc { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===================== HEADER ===================== */
.site-header {
    background: var(--bg-white);
    border-bottom: 3px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* TEXT-ONLY LOGO */
.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ninja-blue);
    border: 3px solid var(--ninja-blue);
    padding: 0.15rem 0.6rem;
    box-shadow: 3px 3px 0 var(--ninja-blue);
    transition: box-shadow 0.15s, transform 0.15s;
}
.logo span { color: var(--ninja-pink); }
.logo:hover {
    box-shadow: none;
    transform: translate(3px, 3px);
}

/* NAV */
.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav__link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.85rem;
    border: 2px solid transparent;
    border-radius: var(--radius);
    color: var(--text-dark);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.site-nav__link:hover,
.site-nav__link--active {
    color: var(--ninja-blue);
    border-color: var(--ninja-blue);
    background: var(--bg-light);
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.55rem 1.2rem;
    color: #fff;
    background: var(--ninja-pink);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-brutal);
    border-radius: var(--radius);
    transition: box-shadow 0.15s, transform 0.15s;
}
.site-header__cta:hover {
    box-shadow: none;
    transform: translate(4px, 4px);
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.burger__line {
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.burger.is-open .burger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger.is-open .burger__line:nth-child(2) { opacity: 0; }
.burger.is-open .burger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* MOBILE NAV OVERLAY */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border-top: 3px solid var(--border-color);
}
.nav-overlay.is-open { display: flex; }
.nav-overlay .site-nav__link { font-size: 1.5rem; }

/* ===================== HERO ===================== */
.hero {
    background: var(--bg-light);
    border-bottom: 3px solid var(--border-color);
    padding: 5rem 0 4rem;
    overflow: hidden;
    position: relative;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ninja-blue);
    background: #fff;
    border: 2px solid var(--ninja-blue);
    padding: 0.3rem 0.8rem;
    margin-bottom: 1.25rem;
    box-shadow: 2px 2px 0 var(--ninja-blue);
}
.hero__title { margin-bottom: 1.25rem; }
.hero__title span { color: var(--ninja-pink); }
.hero__desc { font-size: 1.1rem; margin-bottom: 2rem; max-width: 520px; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}
.hero__meta-item { display: flex; flex-direction: column; gap: 0.15rem; }
.hero__meta-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}
.hero__meta-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--ninja-blue);
}

/* Hero visual */
.hero__visual { position: relative; }
.hero__game-preview {
    border: 3px solid var(--border-color);
    box-shadow: var(--shadow-brutal-lg);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--shadow-dark);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__game-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26,26,46,0.45);
    transition: background 0.2s;
    z-index: 2;
}
.hero__play-overlay:hover { background: rgba(26,26,46,0.25); }
.hero__play-btn {
    width: 70px;
    height: 70px;
    background: var(--ninja-pink);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 0 var(--border-color);
    transition: box-shadow 0.15s, transform 0.15s;
}
.hero__play-btn:hover { box-shadow: none; transform: translate(4px,4px); }
.hero__play-btn svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.7rem 1.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    transition: box-shadow 0.15s, transform 0.15s;
    box-shadow: var(--shadow-brutal);
}
.btn:hover { box-shadow: none; transform: translate(4px, 4px); }

.btn--primary {
    background: var(--ninja-blue);
    color: #fff;
}
.btn--pink {
    background: var(--ninja-pink);
    color: #fff;
}
.btn--outline {
    background: transparent;
    color: var(--text-dark);
}
.btn--outline:hover { background: var(--bg-light); }

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.85rem 2.25rem;
    background: var(--ninja-pink);
    color: #fff;
    border: 3px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 5px 5px 0 var(--border-color);
    cursor: pointer;
    transition: box-shadow 0.15s, transform 0.15s;
}
.btn-play:hover { box-shadow: none; transform: translate(5px, 5px); }

/* ===================== FEATURES ===================== */
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-brutal);
    transition: box-shadow 0.15s, transform 0.15s;
}
.feature-card:hover { box-shadow: none; transform: translate(4px, 4px); }
.feature-card__icon {
    width: 52px;
    height: 52px;
    background: var(--ninja-blue);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 1.5rem;
}
.feature-card__icon--pink { background: var(--ninja-pink); }
.feature-card__icon--yellow { background: var(--accent-yellow); }
.feature-card__icon--green { background: var(--accent-green); }
.feature-card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.feature-card__desc { font-size: 0.95rem; margin-bottom: 0; }

/* ===================== GAME SECTION ===================== */
.game-section { padding: 5rem 0; }
.game-section__wrapper {
    border: 3px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-brutal-lg);
}
.game-section__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    background: var(--shadow-dark);
    border-bottom: 3px solid var(--border-color);
}
.game-section__bar-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.06em;
}
.game-section__iframe-wrap {
    position: relative;
    background: #000;
    width: 100%;
    aspect-ratio: 16/9;
}
.game-section__iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================== HOW TO PLAY (short) ===================== */
.steps { display: flex; flex-direction: column; gap: 1rem; }
.step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-brutal);
}
.step__num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--ninja-blue);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.step__body {}
.step__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.step__desc { font-size: 0.95rem; margin-bottom: 0; }

/* ===================== CONTROLS ===================== */
.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.control-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-brutal);
}
.control-item__key {
    flex-shrink: 0;
    background: var(--shadow-dark);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    border: 2px solid var(--border-color);
    box-shadow: 2px 2px 0 var(--border-color);
    white-space: nowrap;
}
.control-item__desc { font-size: 0.95rem; font-weight: 500; margin-bottom: 0; }

/* ===================== ARTICLES GRID ===================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}
.article-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-brutal);
    overflow: hidden;
    transition: box-shadow 0.15s, transform 0.15s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.article-card:hover { box-shadow: none; transform: translate(4px, 4px); }
.article-card__thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-section);
    border-bottom: 2px solid var(--border-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-card__thumb-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ninja-blue) 0%, var(--ninja-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}
.article-card__content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-card__category {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--ninja-pink);
    padding: 0.2rem 0.6rem;
    border: 1.5px solid var(--border-color);
    margin-bottom: 0.75rem;
    width: fit-content;
}
.article-card__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    z-index: 2;
    position: relative;
}
.article-card__excerpt { font-size: 0.92rem; margin-bottom: 0; color: var(--text-mid); flex: 1; }
.article-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    border-top: 2px solid var(--border-color);
    background: var(--bg-light);
}
.article-card__date { font-size: 0.82rem; color: var(--text-light); font-weight: 500; }
.article-card__read {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    color: var(--ninja-blue);
    z-index: 2;
    position: relative;
}

/* ===================== FAQ ===================== */
.faq { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.faq__item {
    border: 2px solid var(--border-color);
    border-bottom: none;
}
.faq__item:last-child { border-bottom: 2px solid var(--border-color); }
.faq__question {
    width: 100%;
    background: var(--bg-white);
    border: none;
    text-align: left;
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-dark);
    transition: background 0.2s;
}
.faq__question:hover { background: var(--bg-light); }
.faq__question.is-open { background: var(--ninja-blue); color: #fff; }
.faq__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--ninja-pink);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    transition: transform 0.3s;
}
.faq__question.is-open .faq__icon { transform: rotate(45deg); }
.faq__answer {
    display: none;
    padding: 1.1rem 1.5rem;
    border-top: 2px solid var(--border-color);
    background: var(--bg-light);
}
.faq__answer.is-open { display: block; }
.faq__answer p { margin-bottom: 0; }

/* ===================== STATS BAR ===================== */
.stats-bar {
    background: var(--ninja-blue);
    border-top: 3px solid var(--border-color);
    border-bottom: 3px solid var(--border-color);
    padding: 2rem 0;
}
.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
}
.stats-bar__item {
    text-align: center;
    padding: 0.5rem 1rem;
    border-right: 2px solid rgba(255,255,255,0.25);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--accent-yellow);
    display: block;
    line-height: 1;
}
.stats-bar__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255,255,255,0.8);
    margin-top: 0.25rem;
    display: block;
}

/* ===================== CTA BAND ===================== */
.cta-band {
    background: var(--ninja-pink);
    border-top: 3px solid var(--border-color);
    border-bottom: 3px solid var(--border-color);
    padding: 3.5rem 0;
    text-align: center;
}
.cta-band__title {
    color: #fff;
    margin-bottom: 0.75rem;
}
.cta-band__desc { color: rgba(255,255,255,0.9); margin-bottom: 1.75rem; font-size: 1.05rem; }
.cta-band .btn--primary { background: var(--shadow-dark); }

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--shadow-dark);
    color: rgba(255,255,255,0.8);
    border-top: 3px solid var(--border-color);
    padding: 3.5rem 0 1.5rem;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.site-footer__brand .logo {
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    box-shadow: 3px 3px 0 var(--accent-yellow);
    display: inline-block;
    margin-bottom: 1rem;
}
.site-footer__brand .logo span { color: var(--ninja-pink); }
.site-footer__tagline { font-size: 0.92rem; max-width: 300px; }
.site-footer__heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 1rem;
}
.site-footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__link {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.site-footer__link:hover { color: var(--accent-yellow); }
.site-footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.site-footer__copy { font-size: 0.85rem; }
.site-footer__legal { display: flex; gap: 1.25rem; }
.site-footer__legal a { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.site-footer__legal a:hover { color: var(--accent-yellow); }

/* ===================== HERO DECORATIONS ===================== */
.hero__deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.hero__deco--1 {
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: var(--ninja-pink);
    opacity: 0.07;
    border-radius: 50%;
}
.hero__deco--2 {
    bottom: 20px;
    left: -60px;
    width: 150px;
    height: 150px;
    background: var(--ninja-blue);
    opacity: 0.07;
    border-radius: 50%;
}

/* ===================== PAGE HERO ===================== */
.page-hero {
    background: var(--bg-light);
    border-bottom: 3px solid var(--border-color);
    padding: 3.5rem 0 2.5rem;
    text-align: center;
}
.page-hero__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    background: var(--ninja-blue);
    border: 2px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
}
.page-hero__title { margin-bottom: 0.75rem; }
.page-hero__desc { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ===================== ARTICLE PAGE ===================== */
.article-body { max-width: 780px; margin: 0 auto; }
.article-body h2 { margin: 2rem 0 1rem; font-size: 1.6rem; }
.article-body h3 { margin: 1.5rem 0 0.75rem; font-size: 1.2rem; }
.article-body p { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { margin: 0 0 1.1rem 1.5rem; list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 0.45rem; color: var(--text-mid); }
.article-body .tip-box {
    background: var(--bg-section);
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--ninja-blue);
    padding: 1.1rem 1.4rem;
    margin: 1.5rem 0;
    border-radius: var(--radius);
}
.article-body .tip-box strong { color: var(--ninja-blue); }

/* ===================== CONTACT FORM ===================== */
.contact-form { max-width: 640px; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.45rem;
    color: var(--text-dark);
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-brutal);
    transition: box-shadow 0.15s, transform 0.15s;
    outline: none;
}
.form-input:focus,
.form-textarea:focus {
    border-color: var(--ninja-blue);
    box-shadow: 3px 3px 0 var(--ninja-blue);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.88rem;
    margin-bottom: 2rem;
}
.breadcrumb a { color: var(--ninja-blue); text-decoration: underline; }
.breadcrumb span { color: var(--text-light); }

/* ===================== TAGS ===================== */
.tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--bg-light);
    color: var(--text-mid);
}

/* ===================== PRIVACY / TERMS ===================== */
.legal-body { max-width: 840px; margin: 0 auto; }
.legal-body h2 { margin: 2.25rem 0 0.85rem; font-size: 1.5rem; }
.legal-body h3 { margin: 1.5rem 0 0.6rem; font-size: 1.15rem; }
.legal-body p, .legal-body li { font-size: 0.97rem; margin-bottom: 0.85rem; color: var(--text-mid); }
.legal-body ul, .legal-body ol { margin: 0 0 1rem 1.5rem; list-style: disc; }
.legal-body ol { list-style: decimal; }
.legal-body a { color: var(--ninja-blue); text-decoration: underline; }

/* ===================== ABOUT ===================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-visual {
    background: var(--bg-section);
    border: 3px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-brutal-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.team-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-brutal);
    padding: 1.75rem 1.5rem;
    text-align: center;
}
.team-card__avatar {
    width: 64px;
    height: 64px;
    background: var(--ninja-blue);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}
.team-card__name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.team-card__role { font-size: 0.88rem; color: var(--text-light); font-weight: 500; margin-bottom: 0; }

/* ===================== COOKIE CONSENT ===================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--shadow-dark);
    border-top: 3px solid var(--ninja-blue);
    z-index: 9999;
    padding: 1.25rem 0;
}
.cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-consent__text {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    margin-bottom: 0;
    flex: 1;
    min-width: 250px;
}
.cookie-consent__text a {
    color: var(--accent-yellow);
    text-decoration: underline;
}

/* ===================== UTILITIES ===================== */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.gap-2 { gap: 0.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }

/* ===================== TIP BOX (standalone) ===================== */
.tip-box {
    background: var(--bg-section);
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--ninja-blue);
    padding: 1.1rem 1.4rem;
    margin: 1.5rem 0;
    border-radius: var(--radius);
}
.tip-box strong { color: var(--ninja-blue); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { order: -1; }
    .about-grid { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .features__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .site-nav { display: none; }
    .site-header__cta { display: none; }
    .burger { display: flex; }
    .section { padding: 3rem 0; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .hero__meta { gap: 1rem; }
    .game-section__iframe-wrap { aspect-ratio: 4/3; }
    .cookie-consent__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    .btn-play { font-size: 1rem; padding: 0.75rem 1.5rem; }
    .site-footer__bottom { flex-direction: column; text-align: center; }
}