/*
 * PROJECT: darskoler.com
 * DOMAIN: darskoler.com
 * GAME: Stick Jump
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Spider/Web (Red, Blue, Web patterns) — Style #3
 * - 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 CUSTOM PROPERTIES
   ===================== */
:root {
    --spider-red: #cc0000;
    --spider-red-dark: #8b0000;
    --spider-red-bright: #ff2222;
    --web-blue: #1a2a6c;
    --web-blue-mid: #223399;
    --web-blue-light: #3355cc;
    --accent-yellow: #f5c518;
    --accent-white: #f0f0f0;
    --text-dark: #1a1a2e;
    --text-light: #e8e8f0;
    --text-muted: #9999bb;
    --bg-dark: #0d0d1a;
    --bg-card: #111128;
    --bg-card-hover: #161635;
    --border-web: rgba(204, 0, 0, 0.3);
    --shadow-red: 0 0 15px rgba(204, 0, 0, 0.5);
    --shadow-blue: 0 0 15px rgba(34, 51, 153, 0.5);
    --font-heading: 'Bangers', cursive;
    --font-body: 'Nunito', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(204,0,0,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(34,51,153,0.08) 0%, transparent 50%);
}

/* =====================
   WEB PATTERN BACKGROUND
   ===================== */
.web-pattern {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(204,0,0,0.6) 60px,
            rgba(204,0,0,0.6) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(204,0,0,0.6) 60px,
            rgba(204,0,0,0.6) 61px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 42px,
            rgba(34,51,153,0.4) 42px,
            rgba(34,51,153,0.4) 43px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 42px,
            rgba(34,51,153,0.4) 42px,
            rgba(34,51,153,0.4) 43px
        );
}

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

.stars { color: #ffc107; }

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

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

ul {
    list-style: none;
}

/* =====================
   HEADER
   ===================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--spider-red);
    box-shadow: 0 2px 20px rgba(204, 0, 0, 0.3);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--accent-white);
    text-shadow:
        2px 2px 0 var(--spider-red),
        0 0 20px rgba(204,0,0,0.6);
    transition: var(--transition);
}

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

.logo:hover {
    text-shadow:
        2px 2px 0 var(--spider-red),
        0 0 30px rgba(255,34,34,0.8);
    color: #fff;
}

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

.site-nav__link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.site-nav__link:hover,
.site-nav__link--active {
    color: var(--spider-red-bright);
    border-color: var(--spider-red);
    background: rgba(204, 0, 0, 0.1);
    text-shadow: 0 0 8px rgba(255,34,34,0.5);
}

.site-nav__link--play {
    background: var(--spider-red);
    color: #fff !important;
    border-color: var(--spider-red-bright) !important;
    box-shadow: 0 4px 0 var(--spider-red-dark), 0 0 15px rgba(204,0,0,0.4);
}

.site-nav__link--play:hover {
    background: var(--spider-red-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--spider-red-dark), 0 0 25px rgba(255,34,34,0.6);
    text-shadow: none;
}

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

.hamburger__line {
    width: 26px;
    height: 2px;
    background: var(--accent-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* =====================
   BUTTONS
   ===================== */
.btn-play {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, var(--spider-red), var(--spider-red-dark));
    padding: 16px 48px;
    border-radius: var(--radius);
    border: 2px solid var(--spider-red-bright);
    box-shadow:
        0 6px 0 var(--spider-red-dark),
        0 0 25px rgba(204,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-play::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.5s;
}

.btn-play:hover::before {
    left: 100%;
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow:
        0 9px 0 var(--spider-red-dark),
        0 0 40px rgba(255,34,34,0.7),
        inset 0 1px 0 rgba(255,255,255,0.2);
    color: #fff;
}

.btn-play:active {
    transform: translateY(3px);
    box-shadow:
        0 3px 0 var(--spider-red-dark),
        0 0 15px rgba(204,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-secondary {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--spider-red-bright);
    background: transparent;
    padding: 12px 32px;
    border-radius: var(--radius);
    border: 2px solid var(--spider-red);
    box-shadow: 0 4px 0 var(--spider-red-dark);
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: rgba(204,0,0,0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--spider-red-dark), 0 0 20px rgba(204,0,0,0.4);
    color: #fff;
}

.btn-blue {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, var(--web-blue-mid), var(--web-blue));
    padding: 12px 28px;
    border-radius: var(--radius);
    border: 2px solid var(--web-blue-light);
    box-shadow: 0 5px 0 var(--web-blue), 0 0 15px rgba(34,51,153,0.4);
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 var(--web-blue), 0 0 25px rgba(51,85,204,0.6);
    color: #fff;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    text-align: center;
    color: white;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(204,0,0,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 100%, rgba(34,51,153,0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--spider-red-bright);
    border: 1px solid var(--spider-red);
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    background: rgba(204,0,0,0.1);
    box-shadow: 0 0 10px rgba(204,0,0,0.2);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    color: var(--accent-white);
    letter-spacing: 3px;
    text-shadow:
        4px 4px 0 var(--spider-red),
        0 0 40px rgba(204,0,0,0.4);
    margin-bottom: 24px;
}

.hero__title span {
    color: var(--spider-red-bright);
    text-shadow:
        3px 3px 0 var(--spider-red-dark),
        0 0 30px rgba(255,34,34,0.6);
}

.hero__description {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--spider-red-bright);
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255,34,34,0.5);
}

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

/* =====================
   GAME PREVIEW SECTION
   ===================== */
.game-preview {
    padding: 60px 0;
}

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

.game-preview__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--spider-red);
    box-shadow:
        0 0 30px rgba(204,0,0,0.3),
        0 0 60px rgba(204,0,0,0.1);
}

.game-preview__image-wrap::before {
    content: 'STICK JUMP';
    position: absolute;
    top: 16px; left: 16px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--spider-red-bright);
    background: rgba(13,13,26,0.85);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--spider-red);
    z-index: 3;
}

.game-preview__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.game-preview__placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-card), var(--web-blue));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.game-preview__icon {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    border: 3px solid var(--spider-red);
    box-shadow: 0 0 20px rgba(204,0,0,0.4);
}

.game-preview__play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--spider-red);
    border: 3px solid var(--spider-red-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(204,0,0,0.6);
    transition: var(--transition);
    cursor: pointer;
}

.game-preview__play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 35px rgba(255,34,34,0.8);
}

.game-preview__play-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-left: 3px;
}

.game-preview__content {
    padding: 20px 0;
}

.section-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--spider-red);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--spider-red);
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--accent-white);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 2px 2px 0 var(--spider-red);
}

.section-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.feature-list__icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--spider-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(204,0,0,0.4);
}

/* =====================
   SECTION HEADINGS
   ===================== */
.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading__label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--spider-red);
    margin-bottom: 12px;
    display: block;
}

.section-heading__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-white);
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 rgba(204,0,0,0.5);
    margin-bottom: 12px;
}

.section-heading__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

/* =====================
   HOW TO PLAY (HOME PREVIEW)
   ===================== */
.how-to-play {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(34,51,153,0.05), transparent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.step-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-web);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--spider-red), var(--web-blue-light));
}

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

.step-card__number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--spider-red);
    opacity: 0.3;
    position: absolute;
    top: 12px; right: 20px;
    letter-spacing: 0;
    line-height: 1;
}

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

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

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

.how-to-play__cta {
    text-align: center;
}

/* =====================
   FEATURES SECTION
   ===================== */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(34,51,153,0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 60px; height: 60px;
    background: radial-gradient(circle, rgba(204,0,0,0.15), transparent 70%);
    border-radius: 50%;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--web-blue-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(34,51,153,0.2);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(204,0,0,0.4));
}

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

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

/* =====================
   BLOG / ARTICLE CARDS
   ===================== */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(204,0,0,0.03), transparent);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.article-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-web);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.article-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--web-blue), var(--spider-red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    overflow: hidden;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card__content {
    padding: 24px;
}

.article-card__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--spider-red-bright);
    border: 1px solid var(--spider-red);
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    background: rgba(204,0,0,0.1);
}

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

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

.article-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 12px;
}

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

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

.blog-section__cta {
    text-align: center;
}

/* =====================
   FAQ SECTION
   ===================== */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-web);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

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

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

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

.faq-item__icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(204,0,0,0.2);
    border: 1px solid var(--spider-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--spider-red-bright);
    transition: var(--transition);
}

.faq-item.is-open .faq-item__icon {
    background: var(--spider-red);
    transform: rotate(45deg);
    color: #fff;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

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

.faq-item__answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =====================
   RATING / STATS BAR
   ===================== */
.game-rating {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(34,51,153,0.1), rgba(204,0,0,0.08));
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.game-rating__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
}

.rating-stat {
    padding: 24px;
}

.rating-stat__value {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--spider-red-bright);
    letter-spacing: 1px;
    display: block;
    text-shadow: 0 0 20px rgba(255,34,34,0.4);
    margin-bottom: 8px;
}

.rating-stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.rating-stat__stars {
    font-size: 1rem;
    margin-bottom: 8px;
}

/* =====================
   ABOUT PAGE
   ===================== */
.page-hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--accent-white);
    letter-spacing: 3px;
    text-shadow: 3px 3px 0 var(--spider-red);
    margin-bottom: 16px;
}

.page-hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
}

.content-section--alt {
    background: linear-gradient(180deg, transparent, rgba(34,51,153,0.05), transparent);
}

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

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-white);
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 1px 1px 0 var(--spider-red);
}

.content-block h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--spider-red-bright);
    letter-spacing: 1px;
    margin-bottom: 12px;
    margin-top: 28px;
}

.content-block p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block ul,
.content-block ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.content-block li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
    list-style: disc;
}

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

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.info-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-web);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--spider-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(204,0,0,0.2);
}

.info-card__icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

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

.info-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =====================
   HOW TO PLAY PAGE
   ===================== */
.htp-steps {
    padding: 60px 0;
}

.htp-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    margin-bottom: 40px;
    align-items: start;
}

.htp-step__number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--spider-red), var(--spider-red-dark));
    border: 2px solid var(--spider-red-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(204,0,0,0.4);
    flex-shrink: 0;
}

.htp-step__content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: var(--accent-white);
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 rgba(204,0,0,0.5);
}

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

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.tip-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(34,51,153,0.3);
    border-radius: var(--radius-lg);
    padding: 28px;
    border-left: 4px solid var(--spider-red);
    transition: var(--transition);
}

.tip-card:hover {
    background: var(--bg-card-hover);
    box-shadow: 0 6px 25px rgba(204,0,0,0.15);
}

.tip-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--spider-red-bright);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tip-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.controls-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.95rem;
}

.controls-table th {
    background: rgba(204,0,0,0.15);
    color: var(--spider-red-bright);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 1rem;
    padding: 14px 20px;
    text-align: left;
    border-bottom: 2px solid var(--spider-red);
}

.controls-table td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    vertical-align: top;
}

.controls-table tr:last-child td {
    border-bottom: none;
}

.controls-table tr:hover td {
    background: rgba(204,0,0,0.05);
    color: var(--text-light);
}

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

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

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

.contact-info__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius);
    background: rgba(204,0,0,0.15);
    border: 1px solid var(--spider-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info__label {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--accent-white);
    margin-bottom: 4px;
}

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

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

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--accent-white);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(204,0,0,0.3);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    resize: none;
}

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

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

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

/* =====================
   BLOG PAGE
   ===================== */
.blog-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.article-list-card {
    position: relative;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-web);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.article-list-card__image {
    background: linear-gradient(135deg, var(--web-blue), var(--spider-red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    min-height: 180px;
}

.article-list-card__content {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

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

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

.article-list-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* =====================
   ARTICLE PAGE
   ===================== */
.article-page {
    padding: 80px 0;
}

.article-page__inner {
    max-width: 820px;
    margin: 0 auto;
}

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

.article-page__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--spider-red-bright);
    border: 1px solid var(--spider-red);
    padding: 3px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    background: rgba(204,0,0,0.1);
}

.article-page__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--accent-white);
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 2px 2px 0 rgba(204,0,0,0.4);
    margin-bottom: 20px;
}

.article-page__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.article-page__body {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.article-page__body h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-white);
    letter-spacing: 1px;
    margin: 40px 0 16px;
    text-shadow: 1px 1px 0 rgba(204,0,0,0.4);
}

.article-page__body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--spider-red-bright);
    letter-spacing: 1px;
    margin: 28px 0 12px;
}

.article-page__body p {
    margin-bottom: 18px;
}

.article-page__body ul,
.article-page__body ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.article-page__body li {
    margin-bottom: 8px;
    list-style: disc;
}

.article-page__body ol li {
    list-style: decimal;
}

.article-page__body strong {
    color: var(--text-light);
}

.article-page__body blockquote {
    border-left: 4px solid var(--spider-red);
    padding: 16px 24px;
    background: rgba(204,0,0,0.07);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-light);
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: rgba(0,0,0,0.6);
    border-top: 2px solid var(--spider-red);
    padding: 60px 0 24px;
    margin-top: 80px;
}

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

.footer-brand__logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--accent-white);
    text-shadow: 2px 2px 0 var(--spider-red);
    display: block;
    margin-bottom: 12px;
}

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

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social__link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(204,0,0,0.15);
    border: 1px solid var(--spider-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-social__link:hover {
    background: var(--spider-red);
    color: #fff;
    box-shadow: 0 0 12px rgba(204,0,0,0.5);
}

.footer-col__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--accent-white);
    margin-bottom: 16px;
    text-shadow: 1px 1px 0 rgba(204,0,0,0.4);
}

.footer-col__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col__list li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

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

/* =====================
   PRIVACY / TERMS
   ===================== */
.legal-page {
    padding: 80px 0;
}

.legal-page__inner {
    max-width: 820px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--accent-white);
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 var(--spider-red);
    margin-bottom: 8px;
}

.legal-page__date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--spider-red-bright);
    letter-spacing: 1px;
    margin: 32px 0 12px;
}

.legal-page p,
.legal-page li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-page ul li {
    list-style: disc;
}

/* =====================
   BREADCRUMBS
   ===================== */
.breadcrumbs {
    padding: 16px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

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

.breadcrumbs span {
    margin: 0 8px;
    opacity: 0.5;
}

/* =====================
   BACK TO TOP
   ===================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--spider-red);
    border: 2px solid var(--spider-red-bright);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(204,0,0,0.5);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255,34,34,0.7);
}

/* =====================
   DIVIDER
   ===================== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--spider-red), transparent);
    margin: 0;
    opacity: 0.3;
}

/* =====================
   NOTIFICATION
   ===================== */
.notification {
    position: fixed;
    bottom: 80px;
    right: 32px;
    background: var(--bg-card);
    border: 1px solid var(--spider-red);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    z-index: 200;
    transform: translateX(120%);
    transition: transform 0.4s ease;
    box-shadow: 0 0 20px rgba(204,0,0,0.3);
    max-width: 280px;
}

.notification.is-shown {
    transform: translateX(0);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .game-preview__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .article-list-card__image {
        min-height: 140px;
    }
}

@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: 280px;
        background: var(--bg-card);
        border-left: 2px solid var(--spider-red);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 200;
        padding: 80px 24px 40px;
    }

    .site-nav.is-open {
        transform: translateX(0);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }

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

    .site-nav__link {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 201;
    }

    .hamburger.is-active .hamburger__line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.is-active .hamburger__line:nth-child(2) {
        opacity: 0;
    }
    .hamburger.is-active .hamburger__line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero__stats {
        gap: 24px;
    }

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

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

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

    .htp-step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }

    .htp-step__number {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

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

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-play {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}