/*
 * PROJECT: peekaboocabin
 * DOMAIN: peekaboocabin.com
 * GAME: Super Ninja Adventure
 * 
 * DESIGN:
 * - CSS: BEM
 * - Palette: Супер-солдат (Red, Blue, Gold, Patriotic)
 * - Effect: Pattern Backgrounds + 3D shadows
 * - Fonts: Oswald (heading) + Raleway (body)
 * - Buttons: 3D Effect
 * 
 * Created: 2025
 */

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

:root {
    --soldier-red: #c0392b;
    --soldier-red-dark: #96281b;
    --soldier-blue: #1a3a6b;
    --soldier-blue-light: #2558a3;
    --champion-gold: #d4a017;
    --gold-bright: #f5c518;
    --steel-gray: #2c3e50;
    --light-gray: #ecf0f1;
    --white: #ffffff;
    --dark-bg: #0d1b2a;
    --card-bg: #1a2a3d;
    --border-accent: #d4a017;
    --text-primary: #ecf0f1;
    --text-secondary: #a0b0c0;
    --font-heading: 'Oswald', Impact, sans-serif;
    --font-body: 'Raleway', sans-serif;
    --header-height: 70px;
}

*, *::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(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

/* ============================================
   MANDATORY RULES
   ============================================ */
.article-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.article-card,
.offer-card,
.card {
    position: relative;
}

.stars {
    color: #ffc107;
}

/* ============================================
   PATTERN BACKGROUND
   ============================================ */
.pattern-bg {
    background-color: var(--dark-bg);
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(212, 160, 23, 0.04) 0px,
            rgba(212, 160, 23, 0.04) 1px,
            transparent 1px,
            transparent 12px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(26, 58, 107, 0.06) 0px,
            rgba(26, 58, 107, 0.06) 1px,
            transparent 1px,
            transparent 12px
        );
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--gold-bright);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--soldier-red);
}

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

.section {
    padding: 4rem 0;
}

.section--alt {
    background-color: rgba(26, 42, 61, 0.5);
    background-image:
        repeating-linear-gradient(
            90deg,
            rgba(212, 160, 23, 0.03) 0px,
            rgba(212, 160, 23, 0.03) 1px,
            transparent 1px,
            transparent 20px
        );
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: linear-gradient(135deg, var(--soldier-blue) 0%, var(--dark-bg) 60%, var(--steel-gray) 100%);
    border-bottom: 3px solid var(--champion-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-bright);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 var(--soldier-red), 4px 4px 0 rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

.logo:hover {
    color: var(--gold-bright);
    transform: scale(1.05);
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav__link {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.9rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--champion-gold);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--gold-bright);
    background: rgba(212, 160, 23, 0.1);
}

.nav__link:hover::after {
    width: 80%;
}

.nav__link--active {
    color: var(--gold-bright);
}

.nav__toggle {
    display: none;
    background: none;
    border: 2px solid var(--champion-gold);
    color: var(--champion-gold);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--steel-gray) 0%, var(--dark-bg) 100%);
    border-top: 3px solid var(--champion-gold);
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

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

.cookie-consent__text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-consent__text a {
    color: var(--gold-bright);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a6b 50%, #0d1b2a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(212, 160, 23, 0.05) 40px,
            rgba(212, 160, 23, 0.05) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(212, 160, 23, 0.05) 40px,
            rgba(212, 160, 23, 0.05) 41px
        );
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192, 57, 43, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero__badge {
    display: inline-block;
    background: var(--soldier-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    text-shadow: 3px 3px 0 var(--soldier-red), 6px 6px 0 rgba(0,0,0,0.4);
    margin-bottom: 0.5rem;
}

.hero__title span {
    color: var(--gold-bright);
    display: block;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero__game-icon {
    position: relative;
}

.hero__game-icon img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid var(--champion-gold);
    box-shadow:
        0 0 0 2px var(--soldier-red),
        8px 8px 0 rgba(0,0,0,0.5),
        0 20px 60px rgba(212, 160, 23, 0.3);
}

.hero__stats {
    display: flex;
    gap: 2rem;
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-bright);
    display: block;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    position: relative;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    background: var(--soldier-red);
    color: var(--white);
    border: none;
    box-shadow:
        0 6px 0 var(--soldier-red-dark),
        0 8px 15px rgba(192, 57, 43, 0.4);
    transition: all 0.15s ease;
    cursor: pointer;
}

.btn-play:hover {
    background: #d44235;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 var(--soldier-red-dark),
        0 12px 20px rgba(192, 57, 43, 0.5);
}

.btn-play:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 var(--soldier-red-dark),
        0 4px 8px rgba(192, 57, 43, 0.3);
}

.btn--primary {
    background: var(--soldier-red);
    color: var(--white);
    box-shadow:
        0 6px 0 var(--soldier-red-dark),
        0 8px 15px rgba(192, 57, 43, 0.4);
}

.btn--primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 var(--soldier-red-dark),
        0 12px 20px rgba(192, 57, 43, 0.5);
}

.btn--primary:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 var(--soldier-red-dark),
        0 3px 6px rgba(192, 57, 43, 0.3);
}

.btn--gold {
    background: var(--champion-gold);
    color: var(--dark-bg);
    box-shadow:
        0 6px 0 #a07a10,
        0 8px 15px rgba(212, 160, 23, 0.4);
}

.btn--gold:hover {
    color: var(--dark-bg);
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 #a07a10,
        0 12px 20px rgba(212, 160, 23, 0.5);
}

.btn--gold:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 #a07a10,
        0 3px 6px rgba(212, 160, 23, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--gold-bright);
    border: 2px solid var(--champion-gold);
    box-shadow: 4px 4px 0 rgba(212, 160, 23, 0.3);
}

.btn--outline:hover {
    background: rgba(212, 160, 23, 0.1);
    color: var(--gold-bright);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(212, 160, 23, 0.4);
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__label {
    display: inline-block;
    background: var(--soldier-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 1rem;
    margin-bottom: 0.75rem;
    clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0% 50%);
}

.section__title {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}

.section__title span {
    color: var(--gold-bright);
}

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

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-top: 3px solid var(--champion-gold);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 6px 8px 0 rgba(0,0,0,0.4), 0 0 20px rgba(212, 160, 23, 0.1);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card__title {
    color: var(--gold-bright);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-card__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   GAME SECTION
   ============================================ */
.game-section {
    background: linear-gradient(180deg, #0d1b2a 0%, #1a2a3d 50%, #0d1b2a 100%);
    padding: 5rem 0;
}

.game-embed {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid var(--champion-gold);
    box-shadow:
        0 0 0 2px var(--soldier-red),
        10px 10px 0 rgba(0,0,0,0.5),
        0 30px 60px rgba(0,0,0,0.5);
    max-width: 900px;
    margin: 0 auto;
}

.game-embed__frame {
    width: 100%;
    height: 540px;
    border: none;
    display: block;
}

.game-embed__footer {
    background: var(--steel-gray);
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.game-embed__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-embed__controls {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   ARTICLE CARDS
   ============================================ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.article-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
    position: relative;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 10px 0 rgba(0,0,0,0.4), 0 0 20px rgba(212, 160, 23, 0.1);
}

.article-card__image {
    height: 180px;
    background: linear-gradient(135deg, var(--soldier-blue) 0%, var(--steel-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 2px solid var(--champion-gold);
    position: relative;
    overflow: hidden;
}

.article-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(255,255,255,0.03) 8px,
        rgba(255,255,255,0.03) 9px
    );
}

.article-card__category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--soldier-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    z-index: 2;
}

.article-card__content {
    padding: 1.5rem;
}

.article-card__title {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    position: relative;
}

.article-card__excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    z-index: 2;
    position: relative;
    margin-bottom: 1rem;
}

.article-card__read-more {
    color: var(--gold-bright);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--champion-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.article-card__read-more:hover {
    background: var(--champion-gold);
    color: var(--dark-bg);
}

/* ============================================
   HOW TO PLAY (STEPS)
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    counter-reset: step-counter;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    text-align: center;
    counter-increment: step-counter;
    position: relative;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-card::before {
    content: counter(step-counter, decimal-leading-zero);
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(212, 160, 23, 0.15);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    line-height: 1;
}

.step-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-card__title {
    color: var(--gold-bright);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.step-card__text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-left: 4px solid var(--soldier-red);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.faq-item__question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 1rem;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-item__question:hover {
    background: rgba(212, 160, 23, 0.05);
}

.faq-item__icon {
    color: var(--champion-gold);
    font-size: 1.5rem;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.faq-item.is-open .faq-item__answer {
    padding: 0 1.5rem 1.25rem;
    max-height: 400px;
}

.faq-item__answer p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ============================================
   CONTROLS TABLE
   ============================================ */
.controls-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
    background: var(--card-bg);
    border: 2px solid var(--champion-gold);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}

.controls-table th {
    background: var(--soldier-blue);
    color: var(--gold-bright);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.9rem 1.2rem;
    text-align: left;
    border-bottom: 2px solid var(--champion-gold);
}

.controls-table td {
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.controls-table tr:hover td {
    background: rgba(212, 160, 23, 0.05);
}

.controls-table td:first-child {
    color: var(--white);
    font-weight: 600;
}

kbd {
    background: var(--steel-gray);
    border: 1px solid rgba(212, 160, 23, 0.4);
    border-bottom: 3px solid rgba(212, 160, 23, 0.6);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--gold-bright);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--soldier-blue) 0%, var(--dark-bg) 100%);
    padding: 5rem 0 3.5rem;
    border-bottom: 3px solid var(--champion-gold);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 30px,
            rgba(212, 160, 23, 0.04) 30px,
            rgba(212, 160, 23, 0.04) 31px
        );
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero__label {
    display: inline-block;
    background: var(--soldier-red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.3rem 1rem;
    margin-bottom: 1rem;
}

.page-hero__title {
    color: var(--white);
    text-shadow: 3px 3px 0 rgba(0,0,0,0.4);
}

.page-hero__title span {
    color: var(--gold-bright);
}

.page-hero__subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.breadcrumb__item {
    color: var(--text-secondary);
}

.breadcrumb__item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb__item a:hover {
    color: var(--gold-bright);
}

.breadcrumb__sep {
    color: var(--champion-gold);
}

.breadcrumb__item--active {
    color: var(--gold-bright);
}

/* ============================================
   ARTICLE PAGE
   ============================================ */
.article-content {
    max-width: 820px;
    margin: 0 auto;
}

.article-content h2 {
    color: var(--gold-bright);
    margin: 2.5rem 0 1rem;
    font-size: 1.6rem;
    border-left: 4px solid var(--soldier-red);
    padding-left: 1rem;
}

.article-content h3 {
    color: var(--white);
    margin: 2rem 0 0.75rem;
    font-size: 1.2rem;
}

.article-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
    color: var(--text-secondary);
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: var(--white);
}

.article-tip {
    background: rgba(26, 58, 107, 0.4);
    border-left: 4px solid var(--champion-gold);
    padding: 1.25rem 1.5rem;
    border-radius: 0 4px 4px 0;
    margin: 1.5rem 0;
}

.article-tip p {
    margin-bottom: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    color: var(--gold-bright);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--soldier-red);
    padding-left: 1rem;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-stat-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-top: 3px solid var(--champion-gold);
    border-radius: 6px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.about-stat-card__value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-bright);
    display: block;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.4);
}

.about-stat-card__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    max-width: 680px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-top: 4px solid var(--champion-gold);
    border-radius: 6px;
    padding: 2.5rem;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    background: rgba(13, 27, 42, 0.8);
    border: 2px solid rgba(212, 160, 23, 0.2);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: var(--champion-gold);
    box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.15), 3px 3px 0 rgba(0,0,0,0.2);
}

.form-control::placeholder {
    color: rgba(160, 176, 192, 0.5);
}

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

.form-success {
    display: none;
    background: rgba(26, 107, 58, 0.2);
    border: 2px solid #26a96c;
    border-radius: 4px;
    padding: 1rem 1.5rem;
    color: #6ecfa0;
    text-align: center;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--steel-gray) 0%, #0d1420 100%);
    border-top: 3px solid var(--champion-gold);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0 var(--soldier-red);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.footer__logo:hover {
    color: var(--gold-bright);
}

.footer__tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.footer__nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.footer__nav a:hover {
    color: var(--gold-bright);
    padding-left: 6px;
}

.footer__bottom {
    border-top: 1px solid rgba(212, 160, 23, 0.15);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__copy {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer__legal a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--gold-bright);
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--champion-gold), var(--soldier-red), var(--champion-gold), transparent);
    margin: 0;
    border: none;
}

/* ============================================
   TAGS & BADGES
   ============================================ */
.tag {
    display: inline-block;
    background: rgba(26, 58, 107, 0.5);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
}

.tag--red {
    background: rgba(192, 57, 43, 0.2);
    border-color: rgba(192, 57, 43, 0.4);
    color: #e08080;
}

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

.prose h2 {
    color: var(--gold-bright);
    margin: 2.5rem 0 1rem;
    border-left: 4px solid var(--soldier-red);
    padding-left: 1rem;
}

.prose h3 {
    color: var(--white);
    margin: 2rem 0 0.75rem;
}

.prose p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.prose ul,
.prose ol {
    color: var(--text-secondary);
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose strong {
    color: var(--white);
}

.prose a {
    color: var(--gold-bright);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--soldier-red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 0 var(--soldier-red-dark), 0 6px 15px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #d44235;
    transform: translateY(-2px);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold-bright); }
.text-red { color: var(--soldier-red); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

@media (max-width: 768px) {
    .nav__list {
        display: none;
        position: absolute;
        top: calc(var(--header-height) - 1px);
        left: 0;
        right: 0;
        background: var(--soldier-blue);
        border-top: 2px solid var(--champion-gold);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }

    .nav__list.is-open {
        display: flex;
    }

    .nav__link {
        padding: 0.75rem 1.5rem;
        width: 100%;
        border-radius: 0;
    }

    .nav__toggle {
        display: block;
    }

    .header__inner {
        position: relative;
    }

    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .game-embed__frame {
        height: 380px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

@media (max-width: 480px) {
    .hero__stats {
        gap: 1.5rem;
    }

    .game-embed__frame {
        height: 300px;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

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