/*
 * PROJECT: fuzzbooster
 * DOMAIN: fuzzbooster.com
 * GAME: Super Ninja Adventure
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Spider/Web theme — Red, Dark Blue, Web Patterns
 * - Effect: Pattern Backgrounds + Neon Glow accents
 * - Fonts: Bangers (heading) + Nunito (body)
 * - Buttons: 3D Effect
 *
 * Created: 2025
 */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Nunito:wght@400;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --spider-red: #cc0000;
    --spider-red-bright: #ff1a1a;
    --spider-red-dark: #8b0000;
    --web-blue: #0a1628;
    --web-blue-mid: #0d2045;
    --web-blue-light: #1a3a6b;
    --web-silver: #c8d6e5;
    --web-white: #f0f4f8;
    --accent-gold: #ffd700;
    --accent-cyan: #00d4ff;
    --shadow-dark: rgba(0, 0, 0, 0.6);

    --font-heading: 'Bangers', cursive;
    --font-body: 'Nunito', sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: all 0.3s ease;

    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--web-blue);
    color: var(--web-silver);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(204, 0, 0, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

/* Web pattern background overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(200, 214, 229, 0.03) 60px,
            rgba(200, 214, 229, 0.03) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(200, 214, 229, 0.03) 60px,
            rgba(200, 214, 229, 0.03) 61px
        );
    pointer-events: none;
    z-index: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    line-height: 1.1;
}

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

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

ul {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

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

.stars {
    color: #ffc107;
}

/* ===== HEADER ===== */
.site-header {
    background: linear-gradient(135deg, var(--web-blue) 0%, var(--web-blue-mid) 100%);
    border-bottom: 3px solid var(--spider-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.3);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: var(--header-height);
    max-width: 1200px;
    margin: 0 auto;
}

/* LOGO — TEXT ONLY */
.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--spider-red-bright);
    letter-spacing: 3px;
    text-shadow:
        2px 2px 0 var(--web-blue),
        0 0 20px rgba(255, 26, 26, 0.5);
    text-transform: uppercase;
}

.logo span {
    color: var(--web-silver);
}

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

.site-nav__item a {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--web-silver);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.site-nav__item a:hover,
.site-nav__item a.active {
    color: var(--accent-gold);
    background: rgba(204, 0, 0, 0.15);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.nav-toggle__bar {
    width: 28px;
    height: 3px;
    background: var(--web-silver);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
}

/* 3D effect buttons */
.btn-play {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 2px;
    padding: 16px 48px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--spider-red) 0%, var(--spider-red-dark) 100%);
    border: 2px solid var(--spider-red-bright);
    box-shadow:
        0 6px 0 var(--spider-red-dark),
        0 8px 15px rgba(204, 0, 0, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-play:hover {
    transform: translateY(3px);
    box-shadow:
        0 3px 0 var(--spider-red-dark),
        0 5px 10px rgba(204, 0, 0, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.2);
    color: var(--accent-gold);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--spider-red) 0%, var(--spider-red-dark) 100%);
    border: 2px solid var(--spider-red-bright);
    box-shadow:
        0 5px 0 var(--spider-red-dark),
        0 7px 12px rgba(204, 0, 0, 0.3);
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(2px);
    box-shadow:
        0 3px 0 var(--spider-red-dark),
        0 4px 8px rgba(204, 0, 0, 0.3);
    color: var(--accent-gold);
}

.btn-secondary {
    color: var(--web-silver);
    background: transparent;
    border: 2px solid var(--web-silver);
    box-shadow: 0 4px 0 rgba(200, 214, 229, 0.3);
    text-transform: uppercase;
}

.btn-secondary:hover {
    transform: translateY(2px);
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 2px 0 rgba(0, 212, 255, 0.3), 0 0 15px rgba(0, 212, 255, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

/* Spider web decorative lines */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background:
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            transparent 11deg,
            rgba(200, 214, 229, 0.04) 11deg,
            rgba(200, 214, 229, 0.04) 12deg
        );
    animation: webSpin 40s linear infinite;
    pointer-events: none;
}

@keyframes webSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.hero__content {
    z-index: 2;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--spider-red-bright);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--spider-red-bright);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--web-white);
    text-shadow:
        4px 4px 0 var(--spider-red-dark),
        0 0 30px rgba(204, 0, 0, 0.3);
    margin-bottom: 20px;
    line-height: 1;
}

.hero__title span {
    color: var(--spider-red-bright);
}

.hero__description {
    font-size: 1.1rem;
    color: var(--web-silver);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.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 rgba(200, 214, 229, 0.15);
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--spider-red-bright);
    display: block;
    text-shadow: 0 0 10px rgba(255, 26, 26, 0.4);
}

.hero__stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--web-silver);
    opacity: 0.7;
}

.hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero__game-preview {
    width: 100%;
    max-width: 420px;
    background: var(--web-blue-mid);
    border-radius: var(--radius-lg);
    border: 3px solid var(--spider-red);
    box-shadow:
        0 0 30px rgba(204, 0, 0, 0.3),
        0 0 60px rgba(204, 0, 0, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.hero__game-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 214, 229, 0.1);
}

.hero__game-icon {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.hero__game-label {
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--spider-red-dark) 0%, var(--web-blue-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero__game-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--web-white);
    letter-spacing: 1px;
}

.hero__game-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--spider-red-bright);
    color: white;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 80px 0;
}

.section--alt {
    background: rgba(13, 32, 69, 0.5);
    position: relative;
}

.section--alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(200, 214, 229, 0.015) 20px,
            rgba(200, 214, 229, 0.015) 21px
        );
    pointer-events: none;
}

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

.section__eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--spider-red-bright);
    margin-bottom: 12px;
    display: block;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--web-white);
    text-shadow: 3px 3px 0 var(--spider-red-dark);
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1rem;
    color: var(--web-silver);
    max-width: 560px;
    margin: 0 auto;
    opacity: 0.8;
}

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

.feature-card {
    position: relative;
    background: linear-gradient(135deg, var(--web-blue-mid) 0%, var(--web-blue-light) 100%);
    border: 1px solid rgba(204, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--spider-red) 0%, var(--spider-red-bright) 50%, transparent 100%);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--spider-red);
    box-shadow: 0 12px 30px rgba(204, 0, 0, 0.2);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--web-white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.feature-card__text {
    font-size: 0.95rem;
    color: var(--web-silver);
    opacity: 0.85;
    line-height: 1.7;
}

/* ===== HOW TO PLAY PREVIEW ===== */
.howto-preview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.howto-preview__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.step-item__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--spider-red-bright);
    line-height: 1;
    min-width: 50px;
    text-shadow: 0 0 10px rgba(255, 26, 26, 0.4);
}

.step-item__content {}

.step-item__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--web-white);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.step-item__text {
    font-size: 0.9rem;
    color: var(--web-silver);
    opacity: 0.8;
}

.howto-preview__cta {
    margin-top: 32px;
}

.howto-preview__image {
    position: relative;
}

.howto-preview__frame {
    background: var(--web-blue-mid);
    border: 2px solid rgba(204, 0, 0, 0.4);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow:
        0 0 40px rgba(204, 0, 0, 0.15),
        inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.howto-preview__controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.control-item {
    background: rgba(26, 58, 107, 0.5);
    border: 1px solid rgba(204, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
}

.control-item__key {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 8px;
}

.control-item__action {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--web-silver);
}

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

.article-card {
    background: linear-gradient(135deg, var(--web-blue-mid) 0%, var(--web-blue-light) 100%);
    border: 1px solid rgba(204, 0, 0, 0.25);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: var(--spider-red);
    box-shadow: 0 12px 30px rgba(204, 0, 0, 0.2);
}

.article-card__image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--spider-red-dark) 0%, var(--web-blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.article-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(255, 255, 255, 0.02) 15px,
            rgba(255, 255, 255, 0.02) 16px
        );
}

.article-card__content {
    padding: 24px;
}

.article-card__category {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--spider-red-bright);
    margin-bottom: 10px;
    display: block;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--web-white);
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.article-card__excerpt {
    font-size: 0.9rem;
    color: var(--web-silver);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--web-silver);
    opacity: 0.6;
    border-top: 1px solid rgba(200, 214, 229, 0.1);
    padding-top: 12px;
    margin-bottom: 12px;
}

.article-card__read-more {
    color: var(--spider-red-bright);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
}

.article-card__read-more:hover {
    color: var(--accent-gold);
}

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

.faq-item {
    background: var(--web-blue-mid);
    border: 1px solid rgba(204, 0, 0, 0.25);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.is-open {
    border-color: var(--spider-red);
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.15);
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--web-white);
    letter-spacing: 1px;
    transition: var(--transition);
}

.faq-item__question:hover {
    color: var(--spider-red-bright);
}

.faq-item__icon {
    font-size: 1.4rem;
    color: var(--spider-red-bright);
    flex-shrink: 0;
    transition: var(--transition);
    font-style: normal;
    font-family: var(--font-heading);
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-item__answer {
    max-height: 400px;
}

.faq-item__answer-inner {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    color: var(--web-silver);
    line-height: 1.7;
    opacity: 0.85;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--spider-red-dark) 0%, var(--web-blue-mid) 50%, var(--spider-red-dark) 100%);
    border-top: 2px solid var(--spider-red);
    border-bottom: 2px solid var(--spider-red);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            transparent 8deg,
            rgba(255, 255, 255, 0.02) 8deg,
            rgba(255, 255, 255, 0.02) 9deg
        );
    pointer-events: none;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--web-white);
    text-shadow: 3px 3px 0 var(--spider-red-dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner__text {
    font-size: 1.1rem;
    color: var(--web-silver);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-banner__actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--web-blue-mid);
    border: 1px solid var(--spider-red);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: var(--transition);
}

.cookie-consent.is-hidden {
    display: none;
}

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

.cookie-consent__text {
    font-size: 0.85rem;
    color: var(--web-silver);
    line-height: 1.6;
    opacity: 0.85;
}

.cookie-consent__text a {
    color: var(--spider-red-bright);
    text-decoration: underline;
}

.cookie-consent__btn {
    align-self: flex-end;
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(135deg, #050d1a 0%, var(--web-blue) 100%);
    border-top: 3px solid var(--spider-red);
    padding: 60px 0 0;
}

.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-size: 1.8rem;
    color: var(--spider-red-bright);
    letter-spacing: 3px;
    text-shadow:
        2px 2px 0 var(--web-blue),
        0 0 20px rgba(255, 26, 26, 0.4);
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-brand__desc {
    font-size: 0.9rem;
    color: var(--web-silver);
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--web-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--spider-red);
}

.footer-col__list li {
    margin-bottom: 10px;
}

.footer-col__list a {
    font-size: 0.9rem;
    color: var(--web-silver);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col__list a:hover {
    opacity: 1;
    color: var(--spider-red-bright);
    padding-left: 6px;
}

.site-footer__bottom {
    border-top: 1px solid rgba(200, 214, 229, 0.1);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-footer__copy {
    font-size: 0.85rem;
    color: var(--web-silver);
    opacity: 0.5;
}

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

.site-footer__legal a {
    font-size: 0.85rem;
    color: var(--web-silver);
    opacity: 0.5;
    transition: var(--transition);
}

.site-footer__legal a:hover {
    opacity: 1;
    color: var(--spider-red-bright);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--web-blue-mid) 0%, var(--web-blue-light) 100%);
    border-bottom: 2px solid rgba(204, 0, 0, 0.4);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 25px,
            rgba(200, 214, 229, 0.02) 25px,
            rgba(200, 214, 229, 0.02) 26px
        );
    pointer-events: none;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--web-white);
    text-shadow: 3px 3px 0 var(--spider-red-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-hero__subtitle {
    font-size: 1.05rem;
    color: var(--web-silver);
    opacity: 0.8;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--web-silver);
    opacity: 0.6;
    position: relative;
    z-index: 1;
    justify-content: center;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--spider-red-bright);
}

.breadcrumb a:hover {
    opacity: 1;
}

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

.about-content__text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--web-white);
    text-shadow: 3px 3px 0 var(--spider-red-dark);
    margin-bottom: 20px;
}

.about-content__text p {
    font-size: 1rem;
    color: var(--web-silver);
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.85;
}

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

.about-stat {
    background: var(--web-blue-mid);
    border: 1px solid rgba(204, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
}

.about-stat__value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--spider-red-bright);
    display: block;
    text-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
}

.about-stat__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--web-silver);
    opacity: 0.7;
}

.team-section {
    background: rgba(13, 32, 69, 0.4);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid rgba(204, 0, 0, 0.2);
}

/* ===== HOW TO PLAY PAGE ===== */
.htp-section {
    margin-bottom: 60px;
}

.htp-section:last-child {
    margin-bottom: 0;
}

.htp-section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--web-white);
    text-shadow: 2px 2px 0 var(--spider-red-dark);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(204, 0, 0, 0.3);
}

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

.htp-step {
    background: var(--web-blue-mid);
    border: 1px solid rgba(204, 0, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.htp-step:hover {
    border-color: var(--spider-red);
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.15);
}

.htp-step__num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--spider-red-bright);
    line-height: 1;
    min-width: 56px;
    text-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
}

.htp-step__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--web-white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.htp-step__text {
    font-size: 0.9rem;
    color: var(--web-silver);
    opacity: 0.8;
    line-height: 1.7;
}

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

.control-box {
    background: var(--web-blue-mid);
    border: 1px solid rgba(204, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 20px 12px;
    text-align: center;
}

.control-box__key {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 8px;
}

.control-box__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--web-silver);
    opacity: 0.75;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--web-blue-mid);
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 18px 20px;
}

.tip-item__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.tip-item__text {
    font-size: 0.95rem;
    color: var(--web-silver);
    line-height: 1.6;
}

.tip-item__text strong {
    color: var(--web-white);
}

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

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

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

.contact-info__item {
    background: var(--web-blue-mid);
    border: 1px solid rgba(204, 0, 0, 0.25);
    border-radius: var(--radius-md);
    padding: 24px;
}

.contact-info__icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

.contact-info__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--web-white);
    margin-bottom: 6px;
}

.contact-info__text {
    font-size: 0.9rem;
    color: var(--web-silver);
    opacity: 0.75;
}

.contact-form {
    background: var(--web-blue-mid);
    border: 1px solid rgba(204, 0, 0, 0.25);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--web-silver);
    margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(200, 214, 229, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--web-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--spider-red);
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.2);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c8d6e5' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.article-main {}

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

.article-header__category {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--spider-red-bright);
    margin-bottom: 14px;
    display: block;
}

.article-header__title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--web-white);
    text-shadow: 3px 3px 0 var(--spider-red-dark);
    margin-bottom: 16px;
    line-height: 1.1;
}

.article-header__meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--web-silver);
    opacity: 0.6;
}

.article-hero-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--spider-red-dark) 0%, var(--web-blue-light) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(204, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.article-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.02) 20px,
            rgba(255, 255, 255, 0.02) 21px
        );
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--web-white);
    text-shadow: 2px 2px 0 var(--spider-red-dark);
    margin: 36px 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(204, 0, 0, 0.3);
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--web-silver);
    margin: 28px 0 14px;
    letter-spacing: 1px;
}

.article-body p {
    font-size: 1rem;
    color: var(--web-silver);
    line-height: 1.8;
    margin-bottom: 18px;
    opacity: 0.85;
}

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

.article-body ul li,
.article-body ol li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--web-silver);
    line-height: 1.7;
    opacity: 0.85;
}

.article-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--spider-red-bright);
}

.article-body ol {
    counter-reset: item;
}

.article-body ol li::before {
    counter-increment: item;
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: var(--spider-red-bright);
    font-weight: 700;
}

.article-body strong {
    color: var(--web-white);
    font-weight: 700;
}

.article-sidebar {}

.sidebar-widget {
    background: var(--web-blue-mid);
    border: 1px solid rgba(204, 0, 0, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-widget__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--web-white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(204, 0, 0, 0.3);
}

.sidebar-widget--cta {
    background: linear-gradient(135deg, var(--spider-red-dark) 0%, var(--web-blue-mid) 100%);
    border-color: var(--spider-red);
    text-align: center;
}

.sidebar-widget--cta p {
    font-size: 0.9rem;
    color: var(--web-silver);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--web-white);
    text-shadow: 2px 2px 0 var(--spider-red-dark);
    margin: 40px 0 16px;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--web-silver);
    margin: 24px 0 12px;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--web-silver);
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.8;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 16px;
}

.legal-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--web-silver);
    opacity: 0.8;
}

.legal-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--spider-red-bright);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

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

    .hero__title {
        font-size: 3.5rem;
    }

    .hero__description {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__eyebrow {
        justify-content: center;
    }

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

    .howto-preview__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .site-nav {
        display: none;
        position: absolute;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: var(--web-blue-mid);
        border-bottom: 2px solid var(--spider-red);
        padding: 20px;
        z-index: 999;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero__title {
        font-size: 2.8rem;
    }

    .section__title {
        font-size: 2.2rem;
    }

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

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 20px;
    }

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

    .contact-form {
        padding: 24px;
    }

    .cta-banner__title {
        font-size: 2.5rem;
    }

    .page-hero__title {
        font-size: 2.5rem;
    }

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

    .team-section {
        padding: 28px;
    }

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