/*
 * PROJECT: thepriceking.com
 * DOMAIN: thepriceking.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: January 2026
 */

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

:root {
    --warrior-red: #c0392b;
    --warrior-red-dark: #96281b;
    --warrior-red-light: #e74c3c;
    --steel-blue: #1a3a6b;
    --steel-blue-light: #2c5f8a;
    --steel-blue-dark: #0f2444;
    --honor-gold: #d4a017;
    --honor-gold-light: #f0c040;
    --honor-gold-dark: #a07810;
    --blade-silver: #bdc3c7;
    --smoke-white: #f5f5f0;
    --charcoal: #2c2c2c;
    --dark-ink: #1a1a1a;
    --shadow-grey: #4a4a4a;

    --font-heading: 'Oswald', 'Impact', sans-serif;
    --font-body: 'Raleway', sans-serif;

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

    --shadow-card: 6px 6px 0px var(--charcoal);
    --shadow-hover: 8px 8px 0px var(--steel-blue-dark);
    --shadow-gold: 4px 4px 0px var(--honor-gold-dark);

    --header-height: 70px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--smoke-white);
    color: var(--charcoal);
    line-height: 1.7;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 40px,
        rgba(26, 58, 107, 0.04) 40px,
        rgba(26, 58, 107, 0.04) 41px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40px,
        rgba(26, 58, 107, 0.04) 40px,
        rgba(26, 58, 107, 0.04) 41px
    );
}

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

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

ul {
    list-style: none;
}

/* ========== TYPOGRAPHY ========== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

p {
    margin-bottom: 1rem;
}

/* ========== LAYOUT ========== */

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

.section {
    padding: 5rem 0;
}

.section--dark {
    background-color: var(--steel-blue-dark);
    color: var(--smoke-white);
}

.section--red {
    background-color: var(--warrior-red);
    color: var(--smoke-white);
}

.section--gold {
    background-color: var(--honor-gold);
    color: var(--dark-ink);
}

/* ========== HEADER ========== */

.site-header {
    background-color: var(--steel-blue-dark);
    border-bottom: 4px solid var(--honor-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.site-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-weight: 700;
    font-size: 1.8rem;
    color: var(--honor-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 0px var(--honor-gold-dark);
    transition: color 0.2s;
}

.logo:hover {
    color: var(--honor-gold-light);
}

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

.site-nav__link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--smoke-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.site-nav__link:hover,
.site-nav__link--active {
    background-color: var(--warrior-red);
    color: var(--smoke-white);
}

.site-nav__link--cta {
    background-color: var(--warrior-red);
    color: var(--smoke-white);
    border: 2px solid var(--warrior-red-dark);
    box-shadow: 3px 3px 0 var(--warrior-red-dark);
}

.site-nav__link--cta:hover {
    background-color: var(--warrior-red-light);
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--warrior-red-dark);
}

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

.hamburger__line {
    width: 26px;
    height: 3px;
    background-color: var(--honor-gold);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========== HERO ========== */

.hero {
    background-color: var(--steel-blue-dark);
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(192, 57, 43, 0.08) 0px,
            rgba(192, 57, 43, 0.08) 2px,
            transparent 2px,
            transparent 30px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(212, 160, 23, 0.06) 0px,
            rgba(212, 160, 23, 0.06) 2px,
            transparent 2px,
            transparent 30px
        );
    color: var(--smoke-white);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--honor-gold);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: repeating-linear-gradient(
        180deg,
        var(--warrior-red) 0px,
        var(--warrior-red) 30px,
        var(--honor-gold) 30px,
        var(--honor-gold) 35px,
        var(--steel-blue-light) 35px,
        var(--steel-blue-light) 65px
    );
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: repeating-linear-gradient(
        180deg,
        var(--warrior-red) 0px,
        var(--warrior-red) 30px,
        var(--honor-gold) 30px,
        var(--honor-gold) 35px,
        var(--steel-blue-light) 35px,
        var(--steel-blue-light) 65px
    );
}

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

.hero__badge {
    display: inline-block;
    background-color: var(--warrior-red);
    color: var(--smoke-white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid var(--warrior-red-dark);
    box-shadow: 3px 3px 0 var(--warrior-red-dark);
}

.hero__title {
    color: var(--smoke-white);
    margin-bottom: 0.5rem;
}

.hero__title span {
    color: var(--honor-gold);
    text-shadow: 2px 2px 0 var(--honor-gold-dark);
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--honor-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.hero__description {
    font-size: 1.05rem;
    color: rgba(245, 245, 240, 0.85);
    margin-bottom: 2rem;
    max-width: 480px;
}

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

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

.hero__game-card {
    background-color: var(--steel-blue);
    border: 3px solid var(--honor-gold);
    box-shadow: 8px 8px 0 var(--honor-gold-dark);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    max-width: 360px;
    width: 100%;
    text-align: center;
}

.hero__game-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    border: 3px solid var(--warrior-red);
    object-fit: cover;
    box-shadow: 4px 4px 0 var(--warrior-red-dark);
}

.hero__game-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--honor-gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero__game-desc {
    font-size: 0.9rem;
    color: var(--blade-silver);
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.2rem;
    border-top: 2px solid rgba(212, 160, 23, 0.3);
    padding-top: 1rem;
}

.hero__stat {
    text-align: center;
}

.hero__stat-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--honor-gold);
    font-weight: 700;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--blade-silver);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== BUTTONS ========== */

.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    border: none;
    position: relative;
}

.btn-play {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    background-color: var(--warrior-red);
    color: var(--smoke-white);
    border: 3px solid var(--warrior-red-dark);
    box-shadow: 5px 5px 0 var(--warrior-red-dark);
    text-decoration: none;
}

.btn-play:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--warrior-red-dark);
    background-color: var(--warrior-red-light);
}

.btn-play:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--warrior-red-dark);
}

.btn--primary {
    background-color: var(--warrior-red);
    color: var(--smoke-white);
    border: 3px solid var(--warrior-red-dark);
    box-shadow: 5px 5px 0 var(--warrior-red-dark);
}

.btn--primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--warrior-red-dark);
    background-color: var(--warrior-red-light);
}

.btn--primary:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--warrior-red-dark);
}

.btn--gold {
    background-color: var(--honor-gold);
    color: var(--dark-ink);
    border: 3px solid var(--honor-gold-dark);
    box-shadow: 5px 5px 0 var(--honor-gold-dark);
}

.btn--gold:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--honor-gold-dark);
    background-color: var(--honor-gold-light);
}

.btn--gold:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--honor-gold-dark);
}

.btn--outline {
    background-color: transparent;
    color: var(--smoke-white);
    border: 3px solid var(--smoke-white);
    box-shadow: 4px 4px 0 rgba(255,255,255,0.3);
}

.btn--outline:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(255,255,255,0.3);
}

/* ========== SECTION HEADER ========== */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header__eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--warrior-red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.8rem;
    border: 2px solid var(--warrior-red);
}

.section-header__title {
    color: var(--steel-blue-dark);
    margin-bottom: 0.75rem;
}

.section-header__title--light {
    color: var(--smoke-white);
}

.section-header__desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--shadow-grey);
    font-size: 1.05rem;
}

.section-header__desc--light {
    color: rgba(245, 245, 240, 0.8);
}

/* ========== FEATURES GRID ========== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.feature-card {
    position: relative;
    background-color: #fff;
    border: 3px solid var(--charcoal);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-sm);
    padding: 2rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--steel-blue-dark);
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    background-color: var(--steel-blue-dark);
    border: 3px solid var(--honor-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    box-shadow: 3px 3px 0 var(--honor-gold-dark);
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--steel-blue-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

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

/* ========== ARTICLE CARDS ========== */

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.article-card {
    position: relative;
    background-color: #fff;
    border: 3px solid var(--charcoal);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--steel-blue-dark);
}

.article-card__image {
    height: 180px;
    background-color: var(--steel-blue-dark);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(192, 57, 43, 0.15) 0px,
        rgba(192, 57, 43, 0.15) 2px,
        transparent 2px,
        transparent 20px
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 3px solid var(--honor-gold);
    overflow: hidden;
}

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

.article-card__content {
    padding: 1.5rem;
}

.article-card__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.article-card__category {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--smoke-white);
    background-color: var(--warrior-red);
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--warrior-red-dark);
}

.article-card__date {
    font-size: 0.8rem;
    color: var(--shadow-grey);
    font-style: italic;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--steel-blue-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.article-card__excerpt {
    font-size: 0.92rem;
    color: var(--shadow-grey);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-card__link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--warrior-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
    z-index: 2;
}

.article-card__link:hover {
    color: var(--steel-blue-dark);
}

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

/* ========== HOW TO PLAY PREVIEW ========== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

.step-card {
    position: relative;
    background-color: rgba(255,255,255,0.08);
    border: 3px solid rgba(212, 160, 23, 0.5);
    box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
    border-radius: var(--radius-sm);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 rgba(0,0,0,0.4);
    border-color: var(--honor-gold);
}

.step-card__number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background-color: var(--warrior-red);
    color: var(--smoke-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--warrior-red-dark);
    box-shadow: 3px 3px 0 var(--warrior-red-dark);
}

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

.step-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--honor-gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.step-card__text {
    font-size: 0.9rem;
    color: rgba(245, 245, 240, 0.8);
    margin-bottom: 0;
}

/* ========== FAQ ========== */

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

.faq-item {
    border: 3px solid var(--charcoal);
    box-shadow: 4px 4px 0 var(--charcoal);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    background-color: #fff;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item.is-open {
    box-shadow: 6px 6px 0 var(--steel-blue-dark);
    border-color: var(--steel-blue-dark);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--steel-blue-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    user-select: none;
    gap: 1rem;
}

.faq-item__question:hover {
    background-color: var(--smoke-white);
}

.faq-item__icon {
    width: 28px;
    height: 28px;
    background-color: var(--steel-blue-dark);
    color: var(--honor-gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--honor-gold);
    transition: transform 0.3s, background-color 0.2s;
}

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

.faq-item__answer {
    display: none;
    padding: 0 1.5rem 1.2rem;
    color: var(--shadow-grey);
    font-size: 0.97rem;
    border-top: 2px solid var(--smoke-white);
}

.faq-item.is-open .faq-item__answer {
    display: block;
}

/* ========== CTA SECTION ========== */

.cta-section {
    background-color: var(--warrior-red);
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(0,0,0,0.05) 0px,
            rgba(0,0,0,0.05) 2px,
            transparent 2px,
            transparent 20px
        );
    color: var(--smoke-white);
    padding: 4rem 0;
    text-align: center;
    border-top: 5px solid var(--honor-gold);
    border-bottom: 5px solid var(--honor-gold);
}

.cta-section__title {
    color: var(--smoke-white);
    margin-bottom: 1rem;
}

.cta-section__text {
    font-size: 1.1rem;
    color: rgba(245, 245, 240, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ========== STARS ========== */

.stars {
    color: #ffc107;
}

/* ========== COOKIE CONSENT ========== */

.cookie-consent {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: 380px;
    background-color: var(--steel-blue-dark);
    border: 3px solid var(--honor-gold);
    box-shadow: 6px 6px 0 var(--honor-gold-dark);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    z-index: 9999;
    color: var(--smoke-white);
}

.cookie-consent__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--honor-gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cookie-consent__text {
    font-size: 0.88rem;
    color: rgba(245, 245, 240, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.cookie-consent__actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-consent__btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.cookie-consent__btn--accept {
    background-color: var(--honor-gold);
    color: var(--dark-ink);
    border: 2px solid var(--honor-gold-dark);
    box-shadow: 3px 3px 0 var(--honor-gold-dark);
}

.cookie-consent__btn--accept:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--honor-gold-dark);
}

.cookie-consent__btn--decline {
    background-color: transparent;
    color: var(--blade-silver);
    border: 2px solid var(--blade-silver);
    box-shadow: 3px 3px 0 rgba(189,195,199,0.3);
}

.cookie-consent__btn--decline:hover {
    color: var(--smoke-white);
    border-color: var(--smoke-white);
}

/* ========== FOOTER ========== */

.site-footer {
    background-color: var(--dark-ink);
    color: var(--blade-silver);
    border-top: 4px solid var(--honor-gold);
}

.site-footer__main {
    padding: 4rem 0 2rem;
}

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

.site-footer__brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.site-footer__tagline {
    font-size: 0.9rem;
    color: rgba(189, 195, 199, 0.7);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.site-footer__col-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--honor-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--honor-gold-dark);
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__link {
    font-size: 0.9rem;
    color: rgba(189, 195, 199, 0.8);
    transition: color 0.2s, padding-left 0.2s;
}

.site-footer__link:hover {
    color: var(--honor-gold);
    padding-left: 4px;
}

.site-footer__bottom {
    border-top: 2px solid rgba(189, 195, 199, 0.15);
    padding: 1.5rem 0;
}

.site-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__copy {
    font-size: 0.85rem;
    color: rgba(189, 195, 199, 0.5);
}

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

.site-footer__legal-link {
    font-size: 0.85rem;
    color: rgba(189, 195, 199, 0.5);
    transition: color 0.2s;
}

.site-footer__legal-link:hover {
    color: var(--honor-gold);
}

/* ========== PAGE HERO ========== */

.page-hero {
    background-color: var(--steel-blue-dark);
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(192, 57, 43, 0.08) 0px,
            rgba(192, 57, 43, 0.08) 2px,
            transparent 2px,
            transparent 30px
        );
    color: var(--smoke-white);
    padding: 4rem 0 3rem;
    border-bottom: 5px solid var(--honor-gold);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
        var(--warrior-red) 0%,
        var(--honor-gold) 33%,
        var(--steel-blue-light) 66%,
        var(--warrior-red) 100%
    );
}

.page-hero__title {
    color: var(--smoke-white);
    margin-bottom: 0.75rem;
}

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

.page-hero__subtitle {
    font-size: 1.05rem;
    color: rgba(245, 245, 240, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== GAME SECTION ========== */

.game-section {
    background-color: var(--steel-blue-dark);
    padding: 3rem 0;
    border-bottom: 4px solid var(--honor-gold);
}

.game-section__frame-wrapper {
    position: relative;
    border: 4px solid var(--honor-gold);
    box-shadow: 8px 8px 0 var(--honor-gold-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: #000;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.game-section__iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.game-section__controls {
    max-width: 900px;
    margin: 1.5rem auto 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.game-section__control-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255,255,255,0.1);
    border: 2px solid var(--honor-gold);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--honor-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== ABOUT PAGE ========== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-content h3 {
    color: var(--steel-blue-dark);
    margin-bottom: 0.75rem;
}

.about-content p {
    color: var(--shadow-grey);
}

.about-visual {
    background-color: var(--steel-blue-dark);
    border: 3px solid var(--honor-gold);
    box-shadow: 8px 8px 0 var(--honor-gold-dark);
    border-radius: var(--radius-sm);
    padding: 2rem;
    text-align: center;
    color: var(--smoke-white);
}

.about-visual__icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.about-visual__title {
    color: var(--honor-gold);
    margin-bottom: 0.75rem;
}

.about-visual__text {
    color: rgba(245, 245, 240, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.value-card {
    position: relative;
    background-color: #fff;
    border: 3px solid var(--charcoal);
    box-shadow: 5px 5px 0 var(--charcoal);
    border-radius: var(--radius-sm);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--steel-blue-dark);
}

.value-card__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.value-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--steel-blue-dark);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.value-card__text {
    font-size: 0.88rem;
    color: var(--shadow-grey);
    margin-bottom: 0;
}

/* ========== HOW TO PLAY PAGE ========== */

.controls-table {
    width: 100%;
    border-collapse: collapse;
    border: 3px solid var(--charcoal);
    box-shadow: 5px 5px 0 var(--charcoal);
}

.controls-table th {
    background-color: var(--steel-blue-dark);
    color: var(--honor-gold);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 3px solid var(--honor-gold);
}

.controls-table td {
    padding: 0.85rem 1rem;
    border-bottom: 2px solid var(--smoke-white);
    font-size: 0.95rem;
}

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

.controls-table tr:nth-child(even) td {
    background-color: rgba(26, 58, 107, 0.05);
}

.key-badge {
    display: inline-block;
    background-color: var(--charcoal);
    color: var(--smoke-white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    border-bottom: 3px solid rgba(0,0,0,0.5);
    margin: 0 0.1rem;
    letter-spacing: 0.05em;
}

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

.tip-card {
    position: relative;
    background-color: #fff;
    border: 3px solid var(--charcoal);
    box-shadow: 5px 5px 0 var(--charcoal);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tip-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--steel-blue-dark);
}

.tip-card__num {
    width: 36px;
    height: 36px;
    background-color: var(--warrior-red);
    color: var(--smoke-white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--warrior-red-dark);
    box-shadow: 2px 2px 0 var(--warrior-red-dark);
}

.tip-card__body {}

.tip-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--steel-blue-dark);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.tip-card__text {
    font-size: 0.88rem;
    color: var(--shadow-grey);
    margin-bottom: 0;
    line-height: 1.55;
}

/* ========== BLOG / ARTICLES ========== */

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.blog-main {}

.blog-sidebar {}

.blog-sidebar__widget {
    background-color: #fff;
    border: 3px solid var(--charcoal);
    box-shadow: 5px 5px 0 var(--charcoal);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 1.75rem;
}

.blog-sidebar__widget-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--steel-blue-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--warrior-red);
}

.sidebar-post {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--smoke-white);
}

.sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sidebar-post__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--steel-blue-dark);
    text-transform: uppercase;
    line-height: 1.3;
    transition: color 0.2s;
}

.sidebar-post__title:hover {
    color: var(--warrior-red);
}

.sidebar-post__date {
    font-size: 0.78rem;
    color: var(--shadow-grey);
    margin-top: 0.2rem;
}

/* ========== ARTICLE PAGE ========== */

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.article-header {
    margin-bottom: 2rem;
}

.article-header__meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.article-header__category {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--smoke-white);
    background-color: var(--warrior-red);
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--warrior-red-dark);
}

.article-header__date {
    font-size: 0.85rem;
    color: var(--shadow-grey);
    font-style: italic;
}

.article-header__title {
    color: var(--steel-blue-dark);
    margin-bottom: 0.75rem;
}

.article-header__subtitle {
    font-size: 1.1rem;
    color: var(--shadow-grey);
    line-height: 1.7;
}

.article-body h2 {
    color: var(--steel-blue-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 5px solid var(--warrior-red);
}

.article-body h3 {
    color: var(--steel-blue-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-body p {
    color: var(--shadow-grey);
    line-height: 1.8;
}

.article-body ul, .article-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--shadow-grey);
}

.article-body ul {
    list-style: none;
}

.article-body ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-body ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--warrior-red);
    font-size: 0.6rem;
    top: 0.45em;
}

.article-body ol {
    list-style: decimal;
    color: var(--shadow-grey);
}

.article-body ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-callout {
    background-color: var(--steel-blue-dark);
    color: var(--smoke-white);
    border-left: 6px solid var(--honor-gold);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-callout p {
    color: rgba(245, 245, 240, 0.9);
    margin-bottom: 0;
}

/* ========== CONTACT PAGE ========== */

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

.contact-form {
    background-color: #fff;
    border: 3px solid var(--charcoal);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-sm);
    padding: 2rem;
}

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

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--steel-blue-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 3px solid var(--charcoal);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background-color: var(--smoke-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 3px 3px 0 rgba(44, 44, 44, 0.3);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--steel-blue-dark);
    box-shadow: 3px 3px 0 var(--steel-blue-dark);
}

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

.contact-info {}

.contact-info__title {
    color: var(--steel-blue-dark);
    margin-bottom: 1rem;
}

.contact-info__text {
    color: var(--shadow-grey);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background-color: #fff;
    border: 3px solid var(--charcoal);
    box-shadow: 4px 4px 0 var(--charcoal);
    border-radius: var(--radius-sm);
    transition: transform 0.2s;
}

.contact-detail:hover {
    transform: translate(-1px, -1px);
}

.contact-detail__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-detail__label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--warrior-red);
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
}

.contact-detail__value {
    font-size: 0.95rem;
    color: var(--charcoal);
}

/* ========== PRIVACY / TERMS ========== */

.legal-content h2 {
    color: var(--steel-blue-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--warrior-red);
}

.legal-content h3 {
    color: var(--steel-blue-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--shadow-grey);
    line-height: 1.8;
}

.legal-content ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1rem;
    color: var(--shadow-grey);
}

.legal-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--warrior-red);
    font-size: 0.6rem;
    top: 0.45em;
}

/* ========== BREADCRUMB ========== */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    margin-bottom: 0;
    padding: 0.75rem 0;
}

.breadcrumb__item {
    color: rgba(245, 245, 240, 0.65);
    transition: color 0.2s;
}

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

.breadcrumb__separator {
    color: var(--honor-gold);
    font-size: 0.65rem;
}

.breadcrumb__item--current {
    color: var(--honor-gold);
    font-weight: 500;
}

/* ========== OFFER CARD / CARD ========== */

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

/* ========== UTILITY ========== */

.text-center { text-align: center; }
.text-gold { color: var(--honor-gold); }
.text-red { color: var(--warrior-red); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========== DECORATIVE DIVIDER ========== */

.divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
        var(--warrior-red) 0%,
        var(--honor-gold) 33%,
        var(--steel-blue-light) 66%,
        var(--warrior-red) 100%
    );
    border: none;
    margin: 0;
}

/* ========== NOTICE BANNER ========== */

.notice-banner {
    background-color: var(--steel-blue);
    border-left: 6px solid var(--honor-gold);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.notice-banner__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.notice-banner__text {
    font-size: 0.95rem;
    color: var(--smoke-white);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========== FORM SUCCESS ========== */

.form-success {
    display: none;
    background-color: var(--steel-blue-dark);
    color: var(--honor-gold);
    border: 3px solid var(--honor-gold);
    box-shadow: 5px 5px 0 var(--honor-gold-dark);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.form-success.is-visible {
    display: block;
}

.form-success__icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.form-success__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--honor-gold);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.form-success__text {
    font-size: 0.9rem;
    color: rgba(245, 245, 240, 0.8);
    margin-bottom: 0;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 768px) {
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--steel-blue-dark);
        border-top: 3px solid var(--honor-gold);
        border-bottom: 3px solid var(--honor-gold);
        padding: 1rem 1.5rem;
        z-index: 999;
    }

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

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

    .site-nav__link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(212, 160, 23, 0.2);
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

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

    .hero__visual {
        order: -1;
    }

    .hero__game-card {
        max-width: 300px;
    }

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

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

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

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

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

    .game-section__frame-wrapper {
        aspect-ratio: 4/3;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 3rem 0;
    }

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

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