/*
 * PROJECT: cashadvertisingco.com
 * DOMAIN: cashadvertisingco.com
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Cosmic Guardian (Green, Black, Space)
 * - Effect: Neon Glow
 * - Fonts: Space Grotesk + Inter
 * - Buttons: Neon Border
 *
 * Created: 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --blade-green: #00ff88;
    --deep-space: #020c14;
    --space-dark: #061a2b;
    --space-mid: #0a2a40;
    --neon-green: #00e676;
    --cyber-teal: #00bcd4;
    --veggie-orange: #ff6d00;
    --veggie-red: #ff1744;
    --star-white: #e8f5e9;
    --muted-text: #7ecfb0;
    --card-bg: rgba(0, 255, 136, 0.05);
    --card-border: rgba(0, 255, 136, 0.15);
    --overlay-bg: rgba(2, 12, 20, 0.85);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --glow-sm: 0 0 8px rgba(0, 255, 136, 0.4);
    --glow-md: 0 0 16px rgba(0, 255, 136, 0.5), 0 0 32px rgba(0, 255, 136, 0.2);
    --glow-lg: 0 0 24px rgba(0, 255, 136, 0.6), 0 0 48px rgba(0, 255, 136, 0.3);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

/* ========== RESET & BASE ========== */
*, *::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);
    background-color: var(--deep-space);
    color: var(--star-white);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 255, 136, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 188, 212, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 26, 43, 0.8) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 80px 0;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--star-white);
    margin-bottom: 16px;
}

.section__title span {
    color: var(--blade-green);
    text-shadow: var(--glow-sm);
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--muted-text);
    max-width: 600px;
    margin-bottom: 48px;
}

.section--center {
    text-align: center;
}

.section--center .section__subtitle {
    margin-left: auto;
    margin-right: auto;
}

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

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

.stars {
    color: #ffc107;
}

/* ========== COOKIE CONSENT ========== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6, 26, 43, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--card-border);
    padding: 20px 0;
    z-index: 10000;
}

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

.cookie-consent__text {
    font-size: 0.875rem;
    color: var(--muted-text);
    line-height: 1.6;
    flex: 1;
    min-width: 260px;
}

.cookie-consent__text a {
    color: var(--blade-green);
    text-decoration: underline;
}

.cookie-consent__btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    flex-shrink: 0;
    border: none;
}

/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 12, 20, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--blade-green);
    text-shadow: var(--glow-sm);
    letter-spacing: -0.5px;
    transition: text-shadow var(--transition);
}

.logo:hover {
    color: var(--blade-green);
    text-shadow: var(--glow-md);
}

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

.site-nav__link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-text);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition), text-shadow var(--transition);
    position: relative;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blade-green);
    box-shadow: var(--glow-sm);
    transition: width var(--transition);
}

.site-nav__link:hover,
.site-nav__link--active {
    color: var(--blade-green);
    text-shadow: var(--glow-sm);
}

.site-nav__link:hover::after,
.site-nav__link--active::after {
    width: 100%;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blade-green);
    border: 1.5px solid var(--blade-green);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--glow-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}

.site-header__cta:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: var(--glow-md);
    color: var(--blade-green);
}

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

.burger__line {
    width: 24px;
    height: 2px;
    background: var(--blade-green);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ========== HERO ========== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero__grid {
    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-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blade-green);
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blade-green);
    border-radius: 50%;
    box-shadow: var(--glow-sm);
    animation: pulse 2s infinite;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--star-white);
}

.hero__title-accent {
    color: var(--blade-green);
    text-shadow: var(--glow-md);
    display: block;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.8;
}

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

.hero__stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--card-border);
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blade-green);
    text-shadow: var(--glow-sm);
    display: block;
}

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

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

.hero__game-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.hero__game-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    border-radius: var(--radius-lg);
    animation: glow-pulse 3s ease-in-out infinite;
}

.hero__game-icon-wrap {
    position: relative;
    z-index: 1;
    border: 2px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--glow-md), 0 0 80px rgba(0, 255, 136, 0.1);
    background: var(--space-dark);
}

.hero__game-icon-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__game-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    justify-content: center;
}

.tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag--green {
    border-color: rgba(0, 255, 136, 0.4);
    color: var(--blade-green);
}

/* ========== BUTTONS ========== */
.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-space);
    background: var(--blade-green);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--blade-green);
    box-shadow: var(--glow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-play:hover {
    background: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: var(--glow-lg);
    transform: translateY(-2px);
    color: var(--deep-space);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--blade-green);
    background: transparent;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--blade-green);
    box-shadow: var(--glow-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(0, 255, 136, 0.08);
    box-shadow: var(--glow-md);
    transform: translateY(-2px);
    color: var(--blade-green);
}

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

.feature-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: var(--glow-sm), 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--star-white);
    margin-bottom: 10px;
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--muted-text);
    line-height: 1.7;
}

/* ========== GAME SECTION ========== */
.game-section {
    background: var(--space-dark);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

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

.game-section__label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blade-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-section__label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--blade-green);
    box-shadow: var(--glow-sm);
}

.game-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.game-section__title span {
    color: var(--blade-green);
    text-shadow: var(--glow-sm);
}

.game-section__text {
    color: var(--muted-text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.game-section__list {
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-section__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--star-white);
}

.game-section__list li::before {
    content: '⚡';
    font-size: 0.85rem;
    flex-shrink: 0;
}

.game-section__visual {
    position: relative;
}

.game-section__preview {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--card-border);
    box-shadow: var(--glow-md);
}

.game-section__preview img {
    width: 100%;
    display: block;
}

.game-section__play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 12, 20, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    z-index: 2;
}

.game-section__play-overlay:hover {
    background: rgba(2, 12, 20, 0.3);
}

.game-section__play-btn {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-lg);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.game-section__play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-lg), 0 0 60px rgba(0, 255, 136, 0.4);
}

.game-section__play-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--deep-space);
    margin-left: 4px;
}

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

.step-card {
    position: relative;
    text-align: center;
    padding: 32px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.step-card:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: var(--glow-sm);
}

.step-card__number {
    width: 48px;
    height: 48px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--blade-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blade-green);
    text-shadow: var(--glow-sm);
    box-shadow: var(--glow-sm);
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--star-white);
    margin-bottom: 8px;
}

.step-card__text {
    font-size: 0.875rem;
    color: var(--muted-text);
    line-height: 1.7;
}

/* ========== BLOG SECTION ========== */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
}

.article-card:hover {
    border-color: rgba(0, 255, 136, 0.35);
    box-shadow: var(--glow-sm), 0 8px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.article-card__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--space-mid), var(--space-dark));
}

.article-card__img-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--space-mid) 0%, rgba(0, 255, 136, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.article-card__content {
    padding: 24px;
}

.article-card__category {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blade-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--star-white);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color var(--transition);
}

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

.article-card__excerpt {
    font-size: 0.875rem;
    color: var(--muted-text);
    line-height: 1.7;
    margin-bottom: 16px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--muted-text);
}

.article-card__meta-dot {
    width: 3px;
    height: 3px;
    background: var(--muted-text);
    border-radius: 50%;
}

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

.faq__item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq__item.is-open {
    border-color: rgba(0, 255, 136, 0.35);
    box-shadow: var(--glow-sm);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--star-white);
    transition: color var(--transition);
}

.faq__question:hover {
    color: var(--blade-green);
}

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

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
    background: rgba(0, 255, 136, 0.15);
}

.faq__answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.925rem;
    color: var(--muted-text);
    line-height: 1.8;
}

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

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 188, 212, 0.05) 100%);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    text-align: center;
}

.cta-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section__title span {
    color: var(--blade-green);
    text-shadow: var(--glow-md);
}

.cta-section__text {
    color: var(--muted-text);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--space-dark);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 32px;
    position: relative;
    z-index: 1;
}

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

.site-footer__logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--blade-green);
    text-shadow: var(--glow-sm);
    display: block;
    margin-bottom: 16px;
}

.site-footer__desc {
    font-size: 0.875rem;
    color: var(--muted-text);
    line-height: 1.8;
    max-width: 280px;
}

.site-footer__heading {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blade-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.site-footer__nav a:hover {
    color: var(--blade-green);
}

.site-footer__bottom {
    padding-top: 32px;
    border-top: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

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

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

/* ========== INNER PAGES ========== */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 0;
}

.page-hero__label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blade-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero__title span {
    color: var(--blade-green);
    text-shadow: var(--glow-md);
}

.page-hero__subtitle {
    font-size: 1.05rem;
    color: var(--muted-text);
    max-width: 600px;
}

.prose {
    max-width: 800px;
    margin: 0 auto;
}

.prose h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--star-white);
    margin: 48px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--card-border);
}

.prose h2 span {
    color: var(--blade-green);
}

.prose h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--star-white);
    margin: 32px 0 12px;
}

.prose p {
    color: var(--muted-text);
    margin-bottom: 20px;
    line-height: 1.85;
}

.prose ul {
    margin: 16px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prose ul li {
    color: var(--muted-text);
    padding-left: 20px;
    position: relative;
    line-height: 1.7;
}

.prose ul li::before {
    content: '▸';
    color: var(--blade-green);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 3px;
}

.prose ol {
    margin: 16px 0 24px;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prose ol li {
    color: var(--muted-text);
    line-height: 1.7;
    padding-left: 8px;
}

.prose ol li::marker {
    color: var(--blade-green);
    font-family: var(--font-heading);
    font-weight: 700;
}

.prose strong {
    color: var(--star-white);
    font-weight: 600;
}

.prose a {
    color: var(--blade-green);
    text-decoration: underline;
    text-decoration-color: rgba(0, 255, 136, 0.3);
}

.prose a:hover {
    text-decoration-color: var(--blade-green);
}

.info-box {
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-left: 4px solid var(--blade-green);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 0.925rem;
    color: var(--muted-text);
    line-height: 1.8;
}

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

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--star-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: var(--glow-sm);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(126, 207, 176, 0.4);
}

.form__textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blade-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

.contact-info__value {
    font-size: 0.95rem;
    color: var(--muted-text);
}

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

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

.about-stat {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.about-stat:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: var(--glow-sm);
}

.about-stat__value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--blade-green);
    text-shadow: var(--glow-sm);
    display: block;
}

.about-stat__label {
    font-size: 0.8rem;
    color: var(--muted-text);
    margin-top: 4px;
}

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

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.team-card:hover {
    border-color: rgba(0, 255, 136, 0.35);
    box-shadow: var(--glow-sm);
}

.team-card__avatar {
    width: 72px;
    height: 72px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
}

.team-card__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--star-white);
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 0.8rem;
    color: var(--blade-green);
    margin-bottom: 12px;
}

.team-card__bio {
    font-size: 0.825rem;
    color: var(--muted-text);
    line-height: 1.7;
}

/* ========== HOW TO PLAY PAGE ========== */
.htp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.htp-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.htp-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.htp-step__num {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--blade-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--blade-green);
    box-shadow: var(--glow-sm);
    flex-shrink: 0;
}

.htp-step__content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--star-white);
    margin-bottom: 6px;
}

.htp-step__content p {
    font-size: 0.9rem;
    color: var(--muted-text);
    line-height: 1.7;
}

.controls-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

.controls-table th {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blade-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--card-border);
}

.controls-table td {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--muted-text);
    border-bottom: 1px solid rgba(0, 255, 136, 0.06);
}

.controls-table tr:hover td {
    color: var(--star-white);
    background: rgba(0, 255, 136, 0.03);
}

.kbd {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 4px;
    padding: 2px 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--blade-green);
}

.scoring-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.scoring-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    transition: border-color var(--transition);
}

.scoring-item:hover {
    border-color: rgba(0, 255, 136, 0.35);
}

.scoring-item__icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.scoring-item__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--star-white);
    margin-bottom: 4px;
}

.scoring-item__value {
    font-size: 0.8rem;
    color: var(--blade-green);
}

/* ========== BLOG PAGE ========== */
.blog-hero {
    padding: 60px 0;
}

.blog-grid--main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.article-card--featured {
    grid-column: 1;
}

.article-card--featured .article-card__img-placeholder {
    height: 280px;
    font-size: 5rem;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.sidebar-card__label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blade-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.sidebar-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--star-white);
    line-height: 1.4;
    margin-bottom: 8px;
}

.sidebar-card__excerpt {
    font-size: 0.825rem;
    color: var(--muted-text);
    line-height: 1.6;
}

/* ========== ARTICLE PAGE ========== */
.article-header {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 48px;
}

.article-header__category {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blade-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.article-header__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.article-header__meta {
    display: flex;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--muted-text);
}

.article-body {
    padding: 0 0 80px;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.825rem;
    color: var(--muted-text);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb__sep {
    color: rgba(126, 207, 176, 0.4);
}

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

.breadcrumb a:hover {
    color: var(--blade-green);
}

.breadcrumb span:last-child {
    color: var(--blade-green);
}

/* ========== DECORATIVE ELEMENTS ========== */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-border), transparent);
    margin: 0;
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* ========== ANIMATIONS ========== */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* ========== MOBILE NAV ========== */
@media (max-width: 900px) {
    .site-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(2, 12, 20, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--card-border);
        padding: 24px;
        display: none;
        z-index: 999;
    }

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

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

    .site-nav__link {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
    }

    .burger {
        display: flex;
    }

    .site-header__cta {
        display: none;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero__grid,
    .game-section__inner,
    .htp-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

    .hero__visual {
        order: -1;
    }

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

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

    .features__grid,
    .steps__grid,
    .blog__grid,
    .team-grid,
    .scoring-grid {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn-play,
    .hero__actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

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

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

    .site-footer__legal {
        justify-content: center;
    }

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

    .contact-form {
        padding: 24px;
    }

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

    .cookie-consent__btn {
        width: 100%;
    }
}