/*
 * PROJECT: rolfchicago.com
 * DOMAIN: rolfchicago.com
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Soft UI (light #e0e5ec, soft shadows)
 * - Effect: Neumorphism
 * - Fonts: Lexend (heading) + Red Hat Display (body)
 * - Buttons: 3D Effect
 *
 * Created: 2025
 */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700;800&family=Red+Hat+Display:wght@400;500;600;700&display=swap');

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
    --bg-base: #e0e5ec;
    --bg-card: #e8ecf3;
    --shadow-light: #ffffff;
    --shadow-dark: #b8bec7;
    --shadow-inset-light: rgba(255,255,255,0.7);
    --shadow-inset-dark: rgba(184,190,199,0.8);

    --ninja-green: #3aab6d;
    --ninja-green-dark: #2d8b57;
    --blade-silver: #6e7f8d;
    --veggie-orange: #f4845f;
    --veggie-orange-dark: #d96a45;
    --slice-yellow: #f7c948;
    --juice-red: #e85d5d;
    --text-primary: #2c3e50;
    --text-secondary: #5a6878;
    --text-muted: #8a9ab0;

    --font-heading: 'Lexend', sans-serif;
    --font-body: 'Red Hat Display', sans-serif;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --neu-shadow: 6px 6px 14px var(--shadow-dark), -6px -6px 14px var(--shadow-light);
    --neu-shadow-lg: 10px 10px 22px var(--shadow-dark), -10px -10px 22px var(--shadow-light);
    --neu-shadow-inset: inset 4px 4px 8px var(--shadow-inset-dark), inset -4px -4px 8px var(--shadow-inset-light);
    --neu-pressed: inset 5px 5px 12px var(--shadow-dark), inset -5px -5px 12px var(--shadow-light);

    --header-height: 70px;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

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

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

.offer-card {
    position: relative;
}

.card {
    position: relative;
}

.stars {
    color: #ffc107;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

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

.section {
    padding: 80px 0;
}

.section--alt {
    background-color: #d6dce6;
}

/* ===========================
   NEUMORPHIC COMPONENTS
   =========================== */
.neu-box {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
}

.neu-box--inset {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow-inset);
}

.neu-box--lg {
    box-shadow: var(--neu-shadow-lg);
}

/* ===========================
   HEADER
   =========================== */
.site-header {
    background: var(--bg-base);
    box-shadow: 0 4px 16px rgba(184,190,199,0.45), 0 -2px 0 var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1180px;
    margin: 0 auto;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--ninja-green);
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.9);
    transition: color var(--transition);
}

.logo:hover {
    color: var(--ninja-green-dark);
}

.logo span {
    color: var(--veggie-orange);
}

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

.site-nav__item a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.site-nav__item a:hover,
.site-nav__item a.active {
    color: var(--ninja-green);
    background: var(--bg-base);
    box-shadow: var(--neu-shadow);
}

.site-header__cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: var(--bg-base);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px;
    box-shadow: var(--neu-shadow);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger__line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.is-open .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open .hamburger__line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.3px;
}

/* 3D Primary Button */
.btn--primary {
    background: linear-gradient(145deg, var(--ninja-green), var(--ninja-green-dark));
    color: #fff;
    padding: 14px 28px;
    box-shadow: 5px 5px 10px rgba(45,139,87,0.35), -3px -3px 6px rgba(255,255,255,0.7), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 7px 7px 14px rgba(45,139,87,0.4), -3px -3px 8px rgba(255,255,255,0.7);
}

.btn--primary:active {
    transform: translateY(1px);
    box-shadow: 3px 3px 6px rgba(45,139,87,0.3), -1px -1px 4px rgba(255,255,255,0.6);
}

/* 3D Orange Button */
.btn--secondary {
    background: linear-gradient(145deg, var(--veggie-orange), var(--veggie-orange-dark));
    color: #fff;
    padding: 14px 28px;
    box-shadow: 5px 5px 10px rgba(217,106,69,0.35), -3px -3px 6px rgba(255,255,255,0.7), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 7px 7px 14px rgba(217,106,69,0.4), -3px -3px 8px rgba(255,255,255,0.7);
}

.btn--secondary:active {
    transform: translateY(1px);
}

/* Ghost / Outline */
.btn--ghost {
    background: var(--bg-base);
    color: var(--ninja-green);
    padding: 12px 24px;
    box-shadow: var(--neu-shadow);
    border: 2px solid transparent;
}

.btn--ghost:hover {
    border-color: var(--ninja-green);
    color: var(--ninja-green-dark);
}

/* Play Button (large) */
.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(145deg, #3aab6d, #2d8b57);
    padding: 18px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 6px 6px 14px rgba(45,139,87,0.4), -4px -4px 8px rgba(255,255,255,0.8), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-play::before {
    content: '▶';
    font-size: 0.9rem;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 9px 9px 20px rgba(45,139,87,0.45), -4px -4px 10px rgba(255,255,255,0.8);
}

.btn-play:active {
    transform: translateY(1px);
    box-shadow: 3px 3px 8px rgba(45,139,87,0.3);
}

/* Small Button */
.btn--sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    padding: 80px 0 90px;
    overflow: hidden;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--ninja-green);
    background: var(--bg-base);
    box-shadow: var(--neu-shadow);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero__badge::before {
    content: '🥷';
    font-size: 1rem;
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero__title span {
    color: var(--ninja-green);
    position: relative;
}

.hero__title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ninja-green), var(--slice-yellow));
    border-radius: 2px;
    opacity: 0.6;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.75;
}

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

.hero__stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
}

.hero__stat {
    text-align: center;
}

.hero__stat-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ninja-green);
}

.hero__stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Game Preview */
.hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.game-preview {
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow-lg);
    padding: 32px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.game-preview__icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.game-preview__icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    object-fit: cover;
}

.game-preview__badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--slice-yellow), var(--veggie-orange));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 100px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}

.game-preview__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.game-preview__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.game-preview__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.game-preview__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.game-preview__rating .stars {
    font-size: 1.1rem;
}

.game-preview__rating span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Floating veggies decoration */
.hero__veggies {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.veggie-chip {
    background: var(--bg-base);
    box-shadow: var(--neu-shadow);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: floatChip 3s ease-in-out infinite;
}

.veggie-chip:nth-child(2) { animation-delay: 0.5s; }
.veggie-chip:nth-child(3) { animation-delay: 1s; }
.veggie-chip:nth-child(4) { animation-delay: 1.5s; }
.veggie-chip:nth-child(5) { animation-delay: 2s; }

@keyframes floatChip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features__header {
    text-align: center;
    margin-bottom: 56px;
}

.features__header .section-label {
    color: var(--veggie-orange);
}

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

.feature-card {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    padding: 32px 28px;
    transition: all var(--transition);
}

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

.feature-card__icon {
    width: 58px;
    height: 58px;
    background: var(--bg-base);
    border-radius: var(--radius-md);
    box-shadow: var(--neu-shadow-inset);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.feature-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card__desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ===========================
   HOW TO PLAY SNIPPET
   =========================== */
.how-snippet__header {
    text-align: center;
    margin-bottom: 56px;
}

.how-snippet__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    padding: 28px 22px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.step-card:hover {
    box-shadow: var(--neu-shadow-lg);
    transform: translateY(-4px);
}

.step-card__number {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--ninja-green), var(--ninja-green-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 16px;
    box-shadow: 3px 3px 8px rgba(45,139,87,0.35), -2px -2px 5px rgba(255,255,255,0.7);
}

.step-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.step-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===========================
   BLOG / ARTICLES SECTION
   =========================== */
.blog-section__header {
    text-align: center;
    margin-bottom: 56px;
}

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

/* Article Card */
.article-card {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.article-card__image {
    height: 180px;
    background: linear-gradient(135deg, var(--ninja-green) 0%, var(--slice-yellow) 50%, var(--veggie-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.article-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(224,229,236,0.08);
}

.article-card__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--ninja-green);
    background: var(--bg-base);
    box-shadow: var(--neu-shadow);
    border-radius: 100px;
    padding: 4px 12px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.article-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.article-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

.article-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid rgba(184,190,199,0.3);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.article-card__read-more {
    color: var(--ninja-green);
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    position: relative;
}

.article-card__read-more::after {
    content: '→';
    transition: transform var(--transition);
}

.article-card:hover .article-card__read-more::after {
    transform: translateX(4px);
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq__header {
    text-align: center;
    margin-bottom: 56px;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq__item {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    overflow: hidden;
    transition: all var(--transition);
}

.faq__question {
    padding: 20px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.faq__icon {
    width: 28px;
    height: 28px;
    background: var(--bg-base);
    border-radius: 50%;
    box-shadow: var(--neu-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--ninja-green);
    flex-shrink: 0;
    transition: all var(--transition);
    font-weight: 700;
}

.faq__item.is-open .faq__icon {
    box-shadow: var(--neu-shadow-inset);
    transform: rotate(45deg);
}

.faq__answer {
    display: none;
    padding: 0 28px 20px;
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq__item.is-open .faq__answer {
    display: block;
}

/* ===========================
   SECTION LABELS
   =========================== */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--ninja-green);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
    padding: 80px 0;
}

.cta-banner__inner {
    background: linear-gradient(135deg, var(--ninja-green) 0%, #2d8b57 40%, #246644 100%);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    box-shadow: 8px 8px 20px rgba(45,139,87,0.35), -4px -4px 12px rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '🥷';
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 8rem;
    opacity: 0.12;
    pointer-events: none;
}

.cta-banner__inner::after {
    content: '🔪';
    position: absolute;
    bottom: -10px;
    left: 50px;
    font-size: 6rem;
    opacity: 0.10;
    pointer-events: none;
}

.cta-banner__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner__desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-play {
    background: linear-gradient(145deg, #fff, #e8f5ee);
    color: var(--ninja-green-dark);
    font-size: 1.05rem;
    box-shadow: 6px 6px 14px rgba(0,0,0,0.25), -3px -3px 8px rgba(255,255,255,0.3);
}

.cta-banner .btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 9px 9px 20px rgba(0,0,0,0.3), -3px -3px 10px rgba(255,255,255,0.25);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: #d2d8e2;
    border-top: 1px solid rgba(184,190,199,0.5);
    padding: 60px 0 32px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand__logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ninja-green);
    display: block;
    margin-bottom: 14px;
}

.footer-brand__logo span {
    color: var(--veggie-orange);
}

.footer-brand__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

.footer-col__links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition);
    font-weight: 500;
}

.footer-col__links a:hover {
    color: var(--ninja-green);
}

.site-footer__bottom {
    border-top: 1px solid rgba(184,190,199,0.4);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__copy {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.site-footer__legal {
    display: flex;
    gap: 20px;
}

.site-footer__legal a {
    font-size: 0.86rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.site-footer__legal a:hover {
    color: var(--ninja-green);
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
    padding: 60px 0 50px;
    text-align: center;
}

.page-hero__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ninja-green);
    margin-bottom: 12px;
    display: block;
}

.page-hero__title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero__desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   CONTENT SECTIONS
   =========================== */
.content-section {
    padding: 60px 0;
}

.content-block {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    padding: 40px;
    margin-bottom: 28px;
}

.content-block h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.content-block h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.content-block p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.content-block ul,
.content-block ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }

.content-block li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.65;
}

/* ===========================
   TWO-COLUMN LAYOUT
   =========================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.two-col--3-2 {
    grid-template-columns: 3fr 2fr;
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow-lg);
    padding: 40px;
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: var(--bg-base);
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--neu-shadow-inset);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.93rem;
    color: var(--text-primary);
    outline: none;
    transition: all var(--transition);
}

.form-control:focus {
    box-shadow: inset 3px 3px 7px var(--shadow-inset-dark), inset -3px -3px 7px var(--shadow-inset-light), 0 0 0 3px rgba(58,171,109,0.2);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info__item {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    background: var(--bg-base);
    border-radius: var(--radius-sm);
    box-shadow: var(--neu-shadow-inset);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-info__text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info__text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
}

.about-intro__visual {
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow-lg);
    padding: 40px;
    text-align: center;
}

.about-intro__emoji {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 0 60px;
}

.value-card {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    padding: 28px;
    text-align: center;
    transition: all var(--transition);
}

.value-card:hover {
    box-shadow: var(--neu-shadow-lg);
    transform: translateY(-4px);
}

.value-card__icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.value-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===========================
   HOW TO PLAY PAGE
   =========================== */
.htp-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 0 60px;
}

.htp-step {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    padding: 32px 36px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: all var(--transition);
}

.htp-step:hover {
    box-shadow: var(--neu-shadow-lg);
}

.htp-step__num {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, var(--ninja-green), var(--ninja-green-dark));
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 4px 4px 10px rgba(45,139,87,0.35), -2px -2px 6px rgba(255,255,255,0.7);
}

.htp-step__content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.htp-step__content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.control-card {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.control-card__icon {
    width: 48px;
    height: 48px;
    background: var(--bg-base);
    border-radius: var(--radius-sm);
    box-shadow: var(--neu-shadow-inset);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.control-card__text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.control-card__text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

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

/* ===========================
   ARTICLE PAGE
   =========================== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 60px 0;
}

.article-body {
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow-lg);
    padding: 48px;
}

.article-body h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 20px;
}

.article-body h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 14px;
}

.article-body h3 {
    font-size: 1.2rem;
    margin-top: 28px;
    margin-bottom: 12px;
}

.article-body p {
    font-size: 0.97rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 16px;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.7;
}

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

.article-meta span {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.article-tag {
    background: var(--bg-base);
    box-shadow: var(--neu-shadow);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--ninja-green);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-box {
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow);
    padding: 28px;
}

.sidebar-box__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(58,171,109,0.2);
}

.sidebar-box ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-box ul li a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sidebar-box ul li a::before {
    content: '›';
    color: var(--ninja-green);
    font-weight: 800;
}

.sidebar-box ul li a:hover {
    color: var(--ninja-green);
}

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

.legal-content .content-block {
    margin-bottom: 24px;
}

.legal-content h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.legal-content .last-updated {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* ===========================
   COOKIE CONSENT
   =========================== */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: 24px;
    max-width: 480px;
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    box-shadow: var(--neu-shadow-lg);
    padding: 28px;
    z-index: 9999;
    transition: all 0.4s ease;
}

.cookie-consent.is-hidden {
    transform: translateY(200%);
    opacity: 0;
    pointer-events: none;
}

.cookie-consent__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-consent__text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.cookie-consent__text a {
    color: var(--ninja-green);
    font-weight: 600;
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
}

/* ===========================
   NOTIFICATION
   =========================== */
.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--bg-base);
    border-radius: var(--radius-lg);
    box-shadow: var(--neu-shadow-lg);
    padding: 16px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ninja-green);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notification.is-visible {
    transform: translateY(0);
    opacity: 1;
}

/* ===========================
   MOBILE NAV
   =========================== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-base);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-primary);
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--ninja-green);
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-base);
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--neu-shadow);
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================
   BREADCRUMBS
   =========================== */
.breadcrumbs {
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.breadcrumbs a:hover {
    color: var(--ninja-green);
}

.breadcrumbs__sep {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-snippet__steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .site-nav {
        display: none;
    }

    .site-header__cta .btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .how-snippet__steps {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .two-col {
        grid-template-columns: 1fr;
    }

    .two-col--3-2 {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .article-sidebar {
        display: none;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-banner__inner {
        padding: 48px 28px;
    }

    .htp-step {
        flex-direction: column;
        padding: 24px;
    }

    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

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

    .how-snippet__steps {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        gap: 18px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-play {
        width: 100%;
    }

    .content-block {
        padding: 28px 20px;
    }
}