/*
 * PROJECT: reality-new.com
 * DOMAIN: reality-new.com
 * GAME: Tennis Dash
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Dark Knight (Black, Gray, Yellow, Gothic)
 * - Effect: Neon Glow (yellow/gold accents)
 * - Fonts: Cinzel (headings) + Roboto Condensed (body)
 * - Buttons: 3D Effect with gold border
 *
 * Created: January 2026
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Roboto+Condensed:wght@300;400;700&display=swap');

/* =====================
   CSS CUSTOM PROPERTIES
   ===================== */
:root {
    --knight-black: #0a0a0a;
    --knight-dark: #111111;
    --knight-charcoal: #1a1a1a;
    --knight-steel: #2a2a2a;
    --knight-gray: #3d3d3d;
    --knight-silver: #888888;
    --knight-light: #cccccc;
    --champion-gold: #c9a227;
    --trophy-yellow: #f0c040;
    --glow-gold: #ffd700;
    --court-green: #1a3a2a;
    --energy-red: #8b1a1a;
    --white: #f5f5f5;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Roboto Condensed', sans-serif;

    --shadow-gold: 0 0 10px rgba(201, 162, 39, 0.4), 0 0 20px rgba(201, 162, 39, 0.2);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.7);
    --border-gold: 1px solid rgba(201, 162, 39, 0.4);
    --radius: 4px;
    --transition: 0.3s ease;
    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    background-color: var(--knight-black);
    color: var(--knight-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden !important;
}

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

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

a:hover {
    color: var(--glow-gold);
}

ul {
    list-style: none;
}

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

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

.stars {
    color: #ffc107;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: 0.05em;
}

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

p {
    margin-bottom: 1rem;
    color: var(--knight-light);
}

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

.section {
    padding: 5rem 0;
}

.section--dark {
    background-color: var(--knight-charcoal);
}

.section--steel {
    background-color: var(--knight-steel);
}

/* =====================
   HEADER / NAVBAR
   ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    backdrop-filter: blur(8px);
}

.header--scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--champion-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: var(--shadow-gold);
    text-decoration: none;
    transition: color var(--transition), text-shadow var(--transition);
}

.logo:hover {
    color: var(--glow-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
}

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

.nav__link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--knight-light);
    text-decoration: none;
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--champion-gold);
    transition: width var(--transition);
}

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

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

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

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

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

.nav__toggle-bar {
    width: 28px;
    height: 2px;
    background: var(--champion-gold);
    transition: var(--transition);
    display: block;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}

.btn--primary {
    background: linear-gradient(135deg, var(--champion-gold), var(--trophy-yellow));
    color: var(--knight-black);
    box-shadow: 0 4px 0 #7a6010, 0 6px 12px rgba(201,162,39,0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #7a6010, 0 8px 20px rgba(201,162,39,0.4), var(--shadow-gold);
    color: var(--knight-black);
}

.btn--primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #7a6010, 0 2px 6px rgba(201,162,39,0.2);
}

.btn--outline {
    background: transparent;
    color: var(--champion-gold);
    border: 2px solid var(--champion-gold);
    box-shadow: none;
}

.btn--outline:hover {
    background: var(--champion-gold);
    color: var(--knight-black);
    box-shadow: var(--shadow-gold);
}

.btn--ghost {
    background: rgba(201,162,39,0.1);
    color: var(--champion-gold);
    border: 1px solid rgba(201,162,39,0.3);
}

.btn--ghost:hover {
    background: rgba(201,162,39,0.2);
    color: var(--glow-gold);
}

.btn-play {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--champion-gold), var(--glow-gold));
    color: var(--knight-black);
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 5px 0 #7a6010, 0 8px 25px rgba(255,215,0,0.35);
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #7a6010, 0 12px 35px rgba(255,215,0,0.5);
    color: var(--knight-black);
}

.btn-play:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #7a6010;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(201,162,39,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(26,58,42,0.15) 0%, transparent 50%),
        linear-gradient(160deg, var(--knight-dark) 0%, var(--knight-black) 50%, #0d1a0d 100%);
    padding-top: var(--header-height);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(201,162,39,0.02) 80px,
            rgba(201,162,39,0.02) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(201,162,39,0.02) 80px,
            rgba(201,162,39,0.02) 81px
        );
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champion-gold);
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.3);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero__title {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.hero__title span {
    color: var(--champion-gold);
    text-shadow: var(--shadow-gold);
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--knight-silver);
    margin-bottom: 2rem;
    max-width: 480px;
}

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

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201,162,39,0.2);
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--champion-gold);
    display: block;
    text-shadow: var(--shadow-gold);
}

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

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

.hero__game-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(201,162,39,0.3);
    box-shadow: 0 0 40px rgba(201,162,39,0.15), 0 20px 60px rgba(0,0,0,0.8);
}

.hero__game-icon {
    width: 100%;
    max-width: 420px;
    border-radius: 6px;
    display: block;
}

.hero__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10,10,10,0.55);
    transition: background var(--transition);
    text-decoration: none;
}

.hero__play-overlay:hover {
    background: rgba(10,10,10,0.3);
}

.hero__play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--champion-gold), var(--glow-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255,215,0,0.5);
    margin-bottom: 1rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.hero__play-overlay:hover .hero__play-icon {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(255,215,0,0.7);
}

.hero__play-icon svg {
    fill: var(--knight-black);
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.hero__play-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

/* =====================
   SECTION HEADER
   ===================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--champion-gold);
    margin-bottom: 0.75rem;
}

.section-header__title {
    margin-bottom: 1rem;
}

.section-header__title span {
    color: var(--champion-gold);
}

.section-header__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--champion-gold), transparent);
    margin: 0 auto 1rem;
}

.section-header__desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--knight-silver);
}

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

.feature-card {
    background: var(--knight-charcoal);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
    border-color: var(--champion-gold);
    box-shadow: var(--shadow-gold), var(--shadow-card);
    transform: translateY(-4px);
}

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

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

.feature-card__desc {
    font-size: 0.95rem;
    color: var(--knight-silver);
    margin-bottom: 0;
}

/* =====================
   HOW TO PLAY PREVIEW
   ===================== */
.how-to-play-preview {
    background: var(--knight-charcoal);
}

.how-to-play-preview__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.steps__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--champion-gold), var(--trophy-yellow));
    color: var(--knight-black);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    box-shadow: 0 3px 0 #7a6010;
}

.step__content {}

.step__title {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.step__desc {
    font-size: 0.9rem;
    color: var(--knight-silver);
    margin-bottom: 0;
}

.how-to-play-preview__visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.controls-card {
    background: var(--knight-steel);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.controls-card__title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--champion-gold);
    margin-bottom: 1rem;
}

.controls-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.controls-list__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--knight-light);
}

.controls-list__key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 0.3rem 0.75rem;
    background: var(--knight-charcoal);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 2px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--champion-gold);
    letter-spacing: 0.05em;
}

/* =====================
   ARTICLE CARDS (BEM)
   ===================== */
.articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.article-card {
    background: var(--knight-charcoal);
    border: var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
}

.article-card:hover {
    border-color: var(--champion-gold);
    box-shadow: var(--shadow-gold), var(--shadow-card);
    transform: translateY(-4px);
}

.article-card__image {
    height: 180px;
    background: linear-gradient(135deg, var(--knight-steel), var(--court-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.article-card__image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(transparent, var(--knight-charcoal));
}

.article-card__content {
    padding: 1.5rem;
}

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

.article-card__category {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--champion-gold);
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}

.article-card__date {
    font-size: 0.8rem;
    color: var(--knight-silver);
}

.article-card__title {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    line-height: 1.3;
    transition: color var(--transition);
}

.article-card:hover .article-card__title {
    color: var(--champion-gold);
}

.article-card__excerpt {
    font-size: 0.88rem;
    color: var(--knight-silver);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.article-card__read-more {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--champion-gold);
    position: relative;
    z-index: 2;
}

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

.faq__item {
    background: var(--knight-charcoal);
    border: var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
}

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

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

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

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
    background: var(--champion-gold);
    color: var(--knight-black);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--knight-silver);
    font-size: 0.95rem;
}

.faq__item.is-open .faq__answer {
    max-height: 400px;
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
    background:
        radial-gradient(ellipse at center, rgba(201,162,39,0.12) 0%, transparent 65%),
        var(--knight-charcoal);
    border-top: 1px solid rgba(201,162,39,0.2);
    border-bottom: 1px solid rgba(201,162,39,0.2);
    text-align: center;
    padding: 5rem 0;
}

.cta-banner__title {
    margin-bottom: 1rem;
}

.cta-banner__title span {
    color: var(--champion-gold);
    text-shadow: var(--shadow-gold);
}

.cta-banner__desc {
    max-width: 500px;
    margin: 0 auto 2rem;
    color: var(--knight-silver);
}

/* =====================
   FOOTER
   ===================== */
.footer {
    background: var(--knight-dark);
    border-top: 1px solid rgba(201,162,39,0.2);
    padding: 4rem 0 2rem;
}

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

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

.footer__tagline {
    font-size: 0.9rem;
    color: var(--knight-silver);
    max-width: 260px;
    margin-bottom: 0;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--champion-gold);
    margin-bottom: 1.25rem;
}

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

.footer__link {
    font-size: 0.9rem;
    color: var(--knight-silver);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

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

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

.footer__legal-link {
    font-size: 0.85rem;
    color: var(--knight-silver);
    text-decoration: none;
    transition: color var(--transition);
}

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

/* =====================
   COOKIE CONSENT
   ===================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--knight-dark);
    border-top: 1px solid rgba(201,162,39,0.3);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
    padding: 1.25rem;
}

.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 {
    font-size: 0.9rem;
    color: var(--knight-silver);
    margin-bottom: 0;
    flex: 1;
    min-width: 200px;
}

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

.cookie-consent__btn {
    flex-shrink: 0;
}

/* =====================
   PAGE HEADER (Inner Pages)
   ===================== */
.page-header {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.1) 0%, transparent 60%),
        var(--knight-dark);
    padding: 7rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(201,162,39,0.2);
}

.page-header__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--champion-gold);
    margin-bottom: 0.75rem;
}

.page-header__title span {
    color: var(--champion-gold);
}

.page-header__desc {
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--knight-silver);
}

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

.about-story__content p {
    color: var(--knight-silver);
}

.about-story__visual {
    background: var(--knight-charcoal);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-gold);
}

.about-story__visual-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--champion-gold);
    margin-bottom: 1.5rem;
}

.stat-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stat-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-list__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.stat-list__label {
    font-size: 0.9rem;
    color: var(--knight-silver);
}

.stat-list__value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--champion-gold);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.value-card {
    background: var(--knight-charcoal);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.value-card:hover {
    border-color: var(--champion-gold);
    box-shadow: var(--shadow-gold);
}

.value-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card__title {
    font-size: 1rem;
    color: var(--champion-gold);
    margin-bottom: 0.5rem;
}

.value-card__desc {
    font-size: 0.9rem;
    color: var(--knight-silver);
    margin-bottom: 0;
}

/* =====================
   HOW TO PLAY PAGE
   ===================== */
.htp-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.htp-intro__content p {
    color: var(--knight-silver);
}

.htp-intro__game-info {
    background: var(--knight-charcoal);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 2rem;
}

.game-info-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--champion-gold);
    margin-bottom: 1.5rem;
}

.game-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-info-list__item {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
}

.game-info-list__label {
    color: var(--knight-silver);
    min-width: 100px;
}

.game-info-list__val {
    color: var(--white);
    font-weight: 700;
}

.htp-steps__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.htp-step-card {
    background: var(--knight-charcoal);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.htp-step-card:hover {
    border-color: var(--champion-gold);
    box-shadow: var(--shadow-gold);
}

.htp-step-card__num {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(201,162,39,0.2);
    line-height: 1;
}

.htp-step-card__title {
    font-size: 1rem;
    color: var(--champion-gold);
    margin-bottom: 0.5rem;
}

.htp-step-card__desc {
    font-size: 0.9rem;
    color: var(--knight-silver);
    margin-bottom: 0;
}

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

.tip-card {
    background: var(--knight-charcoal);
    border-left: 3px solid var(--champion-gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.5rem;
    transition: box-shadow var(--transition);
}

.tip-card:hover {
    box-shadow: -3px 0 12px rgba(201,162,39,0.3), var(--shadow-card);
}

.tip-card__icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    display: block;
}

.tip-card__title {
    font-size: 1rem;
    color: var(--champion-gold);
    margin-bottom: 0.5rem;
}

.tip-card__desc {
    font-size: 0.9rem;
    color: var(--knight-silver);
    margin-bottom: 0;
}

/* =====================
   BLOG PAGE
   ===================== */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.article-body {
    background: var(--knight-charcoal);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.article-body__header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201,162,39,0.2);
}

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

.article-body__category {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--champion-gold);
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}

.article-body__date {
    font-size: 0.85rem;
    color: var(--knight-silver);
}

.article-body__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0;
}

.article-content p {
    color: var(--knight-silver);
    margin-bottom: 1.25rem;
}

.article-content h2 {
    font-size: 1.5rem;
    color: var(--champion-gold);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--champion-gold);
}

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

.article-content ul, .article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--knight-silver);
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

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

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

.article-sidebar {}

.sidebar-widget {
    background: var(--knight-charcoal);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget__title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--champion-gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201,162,39,0.2);
}

.sidebar-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-article {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    text-decoration: none;
    transition: opacity var(--transition);
}

.sidebar-article:hover {
    opacity: 0.8;
}

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

.sidebar-article__title {
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.sidebar-article__date {
    font-size: 0.75rem;
    color: var(--knight-silver);
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info__title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--champion-gold);
    margin-bottom: 1rem;
}

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

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

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

.contact-detail__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--champion-gold);
    margin-bottom: 0.2rem;
}

.contact-detail__value {
    font-size: 0.95rem;
    color: var(--knight-light);
    margin-bottom: 0;
}

.contact-form {
    background: var(--knight-charcoal);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 2rem;
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--knight-silver);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--knight-steel);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--champion-gold);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}

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

/* =====================
   LEGAL PAGES (Privacy, Terms)
   ===================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--knight-charcoal);
    border: var(--border-gold);
    border-radius: var(--radius);
    padding: 3rem;
}

.legal-content h2 {
    font-size: 1.3rem;
    color: var(--champion-gold);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--champion-gold);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: var(--knight-silver);
}

.legal-content ul {
    padding-left: 1.5rem;
    list-style: disc;
    color: var(--knight-silver);
    margin-bottom: 1rem;
}

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

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

.breadcrumb__item {
    font-size: 0.8rem;
    color: var(--knight-silver);
}

.breadcrumb__item a {
    color: var(--knight-silver);
    text-decoration: none;
    transition: color var(--transition);
}

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

.breadcrumb__sep {
    color: rgba(201,162,39,0.4);
    font-size: 0.75rem;
}

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

/* =====================
   PAGINATION
   ===================== */
.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.pagination__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--knight-charcoal);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--knight-silver);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
}

.pagination__btn:hover,
.pagination__btn--active {
    background: var(--champion-gold);
    color: var(--knight-black);
    border-color: var(--champion-gold);
}

/* =====================
   NOTICE BOX
   ===================== */
.notice-box {
    background: rgba(201,162,39,0.08);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.notice-box p {
    color: var(--knight-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .features__grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero__inner {
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .nav__list {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--knight-dark);
        border-bottom: 1px solid rgba(201,162,39,0.2);
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

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

    .nav__toggle {
        display: flex;
    }

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

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__game-icon {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .features__grid,
    .articles__grid,
    .blog__grid,
    .values-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .how-to-play-preview__inner,
    .about-story,
    .htp-intro,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .section {
        padding: 3.5rem 0;
    }

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

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

    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }

    .footer__legal-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

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