/*
 * PROJECT: taktometor.com
 * DOMAIN: taktometor.com
 * GAME: Checkers Master
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Premium/Luxury (Dark #1a1a2e, Gold #d4af37)
 * - Effect: Gradient Mesh + subtle glow
 * - Fonts: Playfair Display + Montserrat
 * - Buttons: Gradient with 3D Effect
 *
 * Created: January 2026
 */

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

/* ===== CSS VARIABLES ===== */
:root {
    --board-dark: #1a1a2e;
    --board-mid: #16213e;
    --board-light: #0f3460;
    --gold-primary: #d4af37;
    --gold-light: #f0d060;
    --gold-dark: #a07c20;
    --ivory: #f5f0e8;
    --ivory-dark: #d8cfb8;
    --text-light: #e8e0d0;
    --text-muted: #9a9080;
    --piece-dark: #1a0a00;
    --piece-light: #f5e8c0;
    --accent-red: #8b2020;
    --accent-red-light: #c43030;
    --success: #2e7d4f;
    --border-gold: rgba(212, 175, 55, 0.3);
    --shadow-gold: rgba(212, 175, 55, 0.15);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--board-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--gold-primary);
}

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

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 300;
}

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

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

.stars { color: #ffc107; }

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

.section {
    padding: 5rem 0;
}

.section--alt {
    background: var(--board-mid);
}

/* ===== MESH BACKGROUND ===== */
.mesh-bg {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(15, 52, 96, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(26, 26, 46, 0.9) 0%, transparent 100%),
        var(--board-dark);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 20, 0.97);
    border-top: 1px solid var(--border-gold);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
}

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

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

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.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.6rem;
    font-weight: 900;
    color: var(--gold-primary);
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transition: text-shadow 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
    color: var(--gold-light);
}

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

.nav__link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
    color: var(--gold-primary);
}

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

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

.hamburger__line {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn--primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--board-dark);
    padding: 0.875rem 2.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), 0 2px 0 rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(0);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5), 0 4px 0 rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: var(--board-dark);
}

.btn--primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3), 0 1px 0 rgba(0,0,0,0.4);
}

.btn--outline {
    background: transparent;
    color: var(--gold-primary);
    padding: 0.875rem 2.5rem;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 0 0 transparent;
}

.btn--outline:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.btn--play {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--board-dark);
    padding: 1rem 3rem;
    font-size: 1rem;
    letter-spacing: 0.12em;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4), 0 3px 0 rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
    transform: translateY(0);
    border-radius: 3px;
}

.btn--play:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6), 0 5px 0 rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: var(--board-dark);
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(15, 52, 96, 0.3) 0%, transparent 50%),
        var(--board-dark);
    z-index: 0;
}

.hero__board-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(0deg, var(--gold-primary) 0px, var(--gold-primary) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(90deg, var(--gold-primary) 0px, var(--gold-primary) 1px, transparent 1px, transparent 60px);
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--ivory);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.hero__title span {
    color: var(--gold-primary);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
}

.hero__description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

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

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gold);
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
}

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

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

.hero__board {
    position: relative;
    width: 360px;
    height: 360px;
}

.board-frame {
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold-primary);
    border-radius: 6px;
    box-shadow:
        0 0 40px rgba(212, 175, 55, 0.2),
        0 0 80px rgba(212, 175, 55, 0.1),
        inset 0 0 30px rgba(0,0,0,0.5);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    background: var(--board-mid);
}

.board-frame__cell { aspect-ratio: 1; }
.board-frame__cell--dark { background: #2a1a0e; }
.board-frame__cell--light { background: #8b7355; }

.board-frame__cell--piece-dark {
    background: #2a1a0e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.board-frame__cell--piece-light {
    background: #8b7355;
    display: flex;
    align-items: center;
    justify-content: center;
}

.board-piece {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.board-piece--dark {
    background: radial-gradient(circle at 35% 35%, #5a2020, #1a0808);
    border: 2px solid rgba(139, 32, 32, 0.6);
}

.board-piece--light {
    background: radial-gradient(circle at 35% 35%, #fff8e8, #d4c090);
    border: 2px solid rgba(180, 150, 80, 0.6);
}

.hero__board-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ===== GAME ICON SECTION ===== */
.game-icon__img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid var(--border-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

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

.section-header__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
    position: relative;
}

.section-header__eyebrow::before,
.section-header__eyebrow::after {
    content: '—';
    margin: 0 0.5rem;
    opacity: 0.6;
}

.section-header__title {
    color: var(--ivory);
    margin-bottom: 1rem;
}

.section-header__desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 300;
}

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

.feature-card {
    background: rgba(22, 33, 62, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

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

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

.feature-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 0;
}

/* ===== HOW TO PLAY QUICK ===== */
.how-play__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: steps;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(22, 33, 62, 0.5);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.12);
}

.step-card__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.step-card__icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
}

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

.step-card__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    font-weight: 300;
}

/* ===== PLAY SECTION ===== */
.play-section {
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.play-section__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.play-section__inner {
    position: relative;
    z-index: 1;
}

.play-section__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.play-section__title {
    color: var(--ivory);
    margin-bottom: 1rem;
}

.play-section__desc {
    max-width: 550px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

.play-section__meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.play-meta__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.play-meta__icon {
    color: var(--gold-primary);
}

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

.article-card {
    background: rgba(22, 33, 62, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.article-card__thumb {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--board-mid), var(--board-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 1px solid var(--border-gold);
    position: relative;
    overflow: hidden;
}

.article-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08), transparent);
}

.article-card__content {
    padding: 1.75rem;
}

.article-card__category {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.article-card__title {
    font-size: 1.1rem;
    color: var(--ivory);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

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

.article-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
}

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

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

/* ===== FAQ ===== */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: rgba(22, 33, 62, 0.5);
    transition: border-color 0.3s ease;
}

.faq__item.is-open {
    border-color: var(--gold-primary);
}

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

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

.faq__icon {
    color: var(--gold-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.faq__item.is-open .faq__answer {
    display: block;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 26, 46, 0.9));
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.cta-banner__title {
    color: var(--ivory);
    margin-bottom: 1rem;
}

.cta-banner__desc {
    max-width: 500px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 10, 20, 0.95);
    border-top: 1px solid var(--border-gold);
    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.4rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer__col-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1.25rem;
}

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

.footer__nav-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--gold-primary);
}

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

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 0;
}

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

.footer__legal-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

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

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--board-mid), var(--board-dark));
    border-bottom: 1px solid var(--border-gold);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    z-index: 0;
}

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

.page-hero__breadcrumb {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
}

.page-hero__breadcrumb a {
    color: var(--gold-primary);
    transition: opacity 0.3s ease;
}

.page-hero__breadcrumb a:hover {
    opacity: 0.7;
}

.page-hero__title {
    color: var(--ivory);
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    font-size: 1.05rem;
}

/* ===== ARTICLE PAGE ===== */
.article-page {
    padding: 5rem 0;
}

.article-page__inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.article-body {
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.9;
}

.article-body h2 {
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin: 2.5rem 0 1rem;
}

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

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
    list-style: none;
    margin-bottom: 1.25rem;
    padding-left: 0;
}

.article-body ul li,
.article-body ol li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--text-light);
    font-weight: 300;
}

.article-body ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.5rem;
    top: 0.7rem;
}

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

.article-body ol li {
    counter-increment: ol-counter;
}

.article-body ol li::before {
    content: counter(ol-counter) '.';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.875rem;
    top: 0.45rem;
}

.article-body blockquote {
    border-left: 3px solid var(--gold-primary);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 0 4px 4px 0;
    font-style: italic;
    color: var(--text-muted);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
    flex-wrap: wrap;
}

.article-meta__category {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

/* ===== SIDEBAR ===== */
.sidebar__widget {
    background: rgba(22, 33, 62, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 1.75rem;
    margin-bottom: 2rem;
}

.sidebar__widget-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-gold);
}

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

.sidebar__link {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    transition: color 0.3s ease;
    font-weight: 300;
    line-height: 1.5;
}

.sidebar__link:hover {
    color: var(--gold-primary);
}

.sidebar__link-icon {
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    padding: 5rem 0;
}

.about-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-board {
    width: 300px;
    height: 300px;
    border: 2px solid var(--gold-primary);
    border-radius: 6px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.about-board__cell { aspect-ratio: 1; }
.about-board__cell--dark { background: #2a1a0e; }
.about-board__cell--light { background: #8b7355; }

.about-content__title {
    color: var(--ivory);
    margin-bottom: 1rem;
}

.about-content__lead {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.about-list__item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
}

.about-list__check {
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.875rem;
}

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

.team-card {
    background: rgba(22, 33, 62, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.team-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.12);
}

.team-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--board-light), var(--board-mid));
    border: 2px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.team-card__name {
    font-size: 1.1rem;
    color: var(--ivory);
    margin-bottom: 0.25rem;
}

.team-card__role {
    font-size: 0.8rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.team-card__bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===== HOW TO PLAY PAGE ===== */
.how-to-play {
    padding: 5rem 0;
}

.how-to-play__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.rule-block {
    background: rgba(22, 33, 62, 0.5);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.rule-block__number {
    position: absolute;
    top: -15px;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--board-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
}

.rule-block__title {
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.rule-block__body {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 0;
}

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

.control-card {
    background: rgba(22, 33, 62, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
}

.control-card:hover {
    border-color: var(--gold-primary);
}

.control-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.control-card__title {
    font-size: 1rem;
    color: var(--ivory);
    margin-bottom: 0.4rem;
}

.control-card__desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ===== BLOG PAGE ===== */
.blog-page {
    padding: 5rem 0;
}

.blog-page__grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

/* ===== CONTACT FORM ===== */
.contact-page {
    padding: 5rem 0;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.contact-info__desc {
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.contact-detail__icon {
    color: var(--gold-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.contact-detail__value {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 0;
}

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

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.form__input,
.form__select,
.form__textarea {
    background: rgba(22, 33, 62, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(154, 144, 128, 0.5);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__select option {
    background: var(--board-mid);
    color: var(--text-light);
}

/* ===== PRIVACY / TERMS ===== */
.legal-page {
    padding: 5rem 0;
    max-width: 860px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section__title {
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-gold);
}

.legal-section p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.legal-section ul li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.4rem;
    top: 0.7rem;
}

.legal-updated {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

/* ===== DIVIDER ===== */
.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    margin: 1.5rem auto;
}

.divider--left {
    margin-left: 0;
}

/* ===== BACK LINK ===== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    transition: gap 0.3s ease;
}

.back-link:hover {
    gap: 0.75rem;
    color: var(--gold-light);
}

/* ===== FORM SUCCESS ===== */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(22, 33, 62, 0.7);
    border: 1px solid var(--gold-primary);
    border-radius: 6px;
}

.form-success__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.form-success__title {
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

.form-success__text {
    color: var(--text-muted);
    font-weight: 300;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 1024px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .how-play__steps { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero__board { width: 280px; height: 280px; }
    .hero__visual { order: -1; }
    .about-section__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .blog-page__grid { grid-template-columns: 1fr; }
    .article-page__inner { grid-template-columns: 1fr; }
    .contact-page__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 20, 0.98);
        border-left: 1px solid var(--border-gold);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.is-open { right: 0; }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav__link { font-size: 1rem; }

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

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

    .features__grid { grid-template-columns: 1fr; }
    .how-play__steps { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .controls-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__stats { flex-direction: column; gap: 1rem; }
    .play-section__meta { flex-direction: column; gap: 0.75rem; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .footer__legal { justify-content: center; }
    .hero__actions { flex-direction: column; }
    .btn--play, .btn--primary, .btn--outline { width: 100%; text-align: center; }

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

@media (max-width: 480px) {
    .section { padding: 3rem 0; }
    .hero { padding-top: 70px; }
    .hero__board { width: 240px; height: 240px; }
    .page-hero { padding: 7rem 0 3rem; }
}