/*
 * PROJECT: mall-us.com
 * DOMAIN: mall-us.com
 * GAME: Ninja Veggie Slice
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Французская элегантность (Кремовый #fdf6ec, Бордо #722f37)
 * - Effect: Pattern Backgrounds
 * - Fonts: Libre Baskerville (heading) + Raleway (body)
 * - Buttons: Outline Morph
 *
 * Created: 2025
 */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
    --cream: #fdf6ec;
    --cream-dark: #f5e8d0;
    --cream-mid: #eedcbe;
    --bordeaux: #722f37;
    --bordeaux-dark: #5a1f26;
    --bordeaux-light: #9b4a55;
    --bordeaux-pale: #e8c5c9;
    --gold: #b8960c;
    --gold-light: #d4af37;
    --dark: #2b1a1d;
    --text-main: #3a2022;
    --text-muted: #7a5c60;
    --white: #ffffff;
    --shadow-soft: 0 4px 24px rgba(114,47,55,0.10);
    --shadow-card: 0 8px 32px rgba(114,47,55,0.13);
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Raleway', sans-serif;
    --radius: 4px;
    --radius-lg: 8px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    color: var(--text-main);
    background-color: var(--cream);
    line-height: 1.7;
}

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

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

a:hover {
    color: var(--bordeaux-dark);
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.4rem;
}

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

/* =====================
   UTILITY
   ===================== */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section--alt {
    background-color: var(--cream-dark);
}

.section--pattern {
    background-color: var(--cream);
    background-image:
        repeating-linear-gradient(45deg, rgba(114,47,55,0.04) 0px, rgba(114,47,55,0.04) 1px, transparent 1px, transparent 12px),
        repeating-linear-gradient(-45deg, rgba(114,47,55,0.04) 0px, rgba(114,47,55,0.04) 1px, transparent 1px, transparent 12px);
}

.section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section__header h2 {
    margin-bottom: 12px;
}

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

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--bordeaux), var(--gold-light));
    margin: 16px auto 20px;
    border-radius: 2px;
}

.text-center { text-align: center; }
.text-bordeaux { color: var(--bordeaux); }
.stars { color: #ffc107; }

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: var(--radius);
    border: 2px solid var(--bordeaux);
    background: transparent;
    color: var(--bordeaux);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
    text-decoration: none;
}

.btn:hover {
    background: var(--bordeaux);
    color: var(--cream);
    box-shadow: 0 4px 16px rgba(114,47,55,0.25);
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--bordeaux);
    color: var(--cream);
    border-color: var(--bordeaux);
}

.btn--primary:hover {
    background: var(--bordeaux-dark);
    border-color: var(--bordeaux-dark);
    color: var(--cream);
}

.btn--gold {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--dark);
}

.btn--gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.btn-play {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 48px;
    border-radius: var(--radius);
    border: 2px solid var(--gold-light);
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
    color: var(--gold-light);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(114,47,55,0.3);
}

.btn-play:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--bordeaux-dark);
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(184,150,12,0.4);
    transform: translateY(-2px);
}

/* =====================
   HEADER / NAV
   ===================== */
.site-header {
    background: var(--bordeaux-dark);
    background-image:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
    border-bottom: 3px solid var(--gold-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(43,26,29,0.25);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

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

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__item a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cream-dark);
    text-decoration: none;
    transition: color var(--transition);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.site-nav__item a:hover,
.site-nav__item a.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle__bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cream);
    margin: 6px 0;
    transition: all var(--transition);
    border-radius: 2px;
}

/* =====================
   HERO
   ===================== */
.hero {
    background-color: var(--cream-dark);
    background-image:
        repeating-linear-gradient(45deg, rgba(114,47,55,0.05) 0px, rgba(114,47,55,0.05) 1px, transparent 1px, transparent 16px),
        repeating-linear-gradient(-45deg, rgba(114,47,55,0.05) 0px, rgba(114,47,55,0.05) 1px, transparent 1px, transparent 16px);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114,47,55,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,150,12,0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero__text {}

.hero__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bordeaux);
    background: var(--bordeaux-pale);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    border: 1px solid rgba(114,47,55,0.2);
}

.hero__title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--bordeaux-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero__title em {
    font-style: italic;
    color: var(--bordeaux);
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

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

.hero__game-card {
    background: var(--white);
    border: 2px solid var(--bordeaux-pale);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    text-align: center;
    max-width: 340px;
    width: 100%;
}

.hero__game-card__icon {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
    border: 3px solid var(--bordeaux-pale);
}

.hero__game-card__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--bordeaux-dark);
    margin-bottom: 8px;
}

.hero__game-card__meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

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

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

.feature-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--bordeaux-pale);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bordeaux), var(--gold-light));
}

.feature-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bordeaux-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--bordeaux-dark);
    margin-bottom: 10px;
}

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

/* =====================
   GAME PREVIEW
   ===================== */
.game-preview {
    background: var(--bordeaux-dark);
    background-image:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px);
    padding: 80px 0;
    text-align: center;
}

.game-preview h2 {
    color: var(--cream);
    margin-bottom: 12px;
}

.game-preview p {
    color: var(--cream-dark);
    opacity: 0.8;
    margin-bottom: 36px;
}

.game-preview .divider {
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

.game-preview__box {
    background: rgba(253,246,236,0.06);
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    max-width: 600px;
    margin: 0 auto;
}

.game-preview__icon {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 0 auto 24px;
    border: 3px solid rgba(212,175,55,0.5);
}

.game-preview__controls {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--cream-dark);
    opacity: 0.7;
}

/* =====================
   HOW TO PLAY (steps)
   ===================== */
.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--bordeaux-pale);
    border-radius: var(--radius-lg);
    padding: 32px 20px 24px;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
}

.step-card__number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bordeaux);
    color: var(--cream);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--bordeaux-dark);
    margin-bottom: 10px;
}

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

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

.article-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--bordeaux-pale);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.article-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.article-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 2px solid var(--bordeaux-pale);
}

.article-card__image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--bordeaux-pale) 0%, var(--cream-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-bottom: 2px solid var(--bordeaux-pale);
}

.article-card__content {
    padding: 24px;
}

.article-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bordeaux);
    background: var(--bordeaux-pale);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--bordeaux-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.faq__item {
    border: 1px solid var(--bordeaux-pale);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow var(--transition);
}

.faq__item:hover {
    box-shadow: var(--shadow-soft);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--bordeaux-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background var(--transition);
}

.faq__question:hover {
    background: var(--cream);
}

.faq__question.is-open {
    background: var(--bordeaux);
    color: var(--cream);
}

.faq__icon {
    font-style: normal;
    font-size: 1.3rem;
    font-weight: 700;
    min-width: 24px;
    transition: transform var(--transition);
}

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

.faq__answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

/* =====================
   STATS / HIGHLIGHTS
   ===================== */
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-card {
    position: relative;
    padding: 32px 20px;
    background: var(--white);
    border: 1px solid var(--bordeaux-pale);
    border-radius: var(--radius-lg);
}

.stat-card__value {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--bordeaux);
    display: block;
    margin-bottom: 6px;
}

.stat-card__label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
    background: var(--bordeaux-dark);
    background-image:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 20px);
    padding: 60px 0;
    text-align: center;
    border-bottom: 3px solid var(--gold-light);
}

.page-hero h1 {
    color: var(--cream);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--cream-dark);
    opacity: 0.85;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .divider {
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb {
    padding: 14px 0;
    background: var(--cream-dark);
    border-bottom: 1px solid var(--bordeaux-pale);
}

.breadcrumb__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.breadcrumb__list li + li::before {
    content: '›';
    margin-right: 8px;
    color: var(--bordeaux-light);
}

.breadcrumb__list a {
    color: var(--bordeaux);
    font-weight: 500;
}

.breadcrumb__list a:hover {
    color: var(--bordeaux-dark);
}

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

.about-content__visual {
    position: relative;
}

.about-content__image-box {
    background: var(--cream-dark);
    border: 2px solid var(--bordeaux-pale);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.about-content__game-icon {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
    border: 3px solid var(--bordeaux-pale);
}

.about-content__text h3 {
    margin-bottom: 12px;
    margin-top: 28px;
}

.about-content__text h3:first-child {
    margin-top: 0;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.value-item {
    background: var(--cream-dark);
    border: 1px solid var(--bordeaux-pale);
    border-radius: var(--radius);
    padding: 20px;
}

.value-item h4 {
    color: var(--bordeaux);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* =====================
   HOW TO PLAY PAGE
   ===================== */
.how-to-play__content {
    max-width: 820px;
    margin: 0 auto;
}

.tips__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tip-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--bordeaux-pale);
    border-radius: var(--radius-lg);
    padding: 24px;
    border-left: 4px solid var(--bordeaux);
}

.tip-card h4 {
    color: var(--bordeaux-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.tip-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.controls-box {
    background: var(--bordeaux-dark);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 32px 0;
    color: var(--cream);
}

.controls-box h3 {
    color: var(--gold-light);
    margin-bottom: 20px;
}

.controls-table {
    width: 100%;
    border-collapse: collapse;
}

.controls-table th {
    text-align: left;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(212,175,55,0.3);
}

.controls-table td {
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--cream-dark);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

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

/* =====================
   ARTICLE PAGE
   ===================== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding: 60px 0;
}

.article-body h2 {
    margin-top: 36px;
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.article-body h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.article-body p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.8;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.2rem;
}

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

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bordeaux-pale);
    flex-wrap: wrap;
}

.article-meta__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bordeaux);
    background: var(--bordeaux-pale);
    padding: 3px 10px;
    border-radius: 20px;
}

.article-meta__date,
.article-meta__read {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-sidebar {}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--bordeaux-pale);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--bordeaux-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bordeaux-pale);
}

.sidebar-widget__link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget__link-list li {
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: 0;
}

.sidebar-widget__link-list li:last-child {
    border-bottom: none;
}

.sidebar-widget__link-list a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: color var(--transition), padding-left var(--transition);
}

.sidebar-widget__link-list a:hover {
    color: var(--bordeaux);
    padding-left: 6px;
}

.play-widget {
    background: var(--bordeaux-dark);
    border-color: var(--bordeaux);
    text-align: center;
}

.play-widget .sidebar-widget__title {
    color: var(--cream);
    border-bottom-color: rgba(212,175,55,0.3);
}

.play-widget p {
    color: var(--cream-dark);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 16px;
}

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

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-detail__icon {
    width: 44px;
    height: 44px;
    background: var(--bordeaux-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail__text h4 {
    color: var(--bordeaux-dark);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-detail__text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--bordeaux-pale);
    border-radius: var(--radius-lg);
    padding: 36px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--bordeaux-pale);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--bordeaux);
    box-shadow: 0 0 0 3px rgba(114,47,55,0.1);
}

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

/* =====================
   LEGAL PAGES
   ===================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 14px;
    font-size: 1.3rem;
}

.legal-content h3 {
    margin-top: 24px;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.legal-content .last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--cream-dark);
    border: 1px solid var(--bordeaux-pale);
    border-radius: var(--radius);
    padding: 10px 16px;
    margin-bottom: 32px;
    display: inline-block;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: var(--dark);
    background-image:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px);
    border-top: 3px solid var(--bordeaux);
    padding: 60px 0 0;
    color: var(--cream-dark);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(253,246,236,0.1);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(253,246,236,0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: rgba(253,246,236,0.65);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--gold-light);
}

.site-footer__bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer__bottom p {
    font-size: 0.85rem;
    color: rgba(253,246,236,0.45);
    margin: 0;
}

.site-footer__bottom a {
    color: rgba(253,246,236,0.55);
    font-size: 0.85rem;
}

.site-footer__bottom a:hover {
    color: var(--gold-light);
}

/* =====================
   OFFER / CARD (generic)
   ===================== */
.offer-card, .card {
    position: relative;
}

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

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

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .article-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

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

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

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

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

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

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

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

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

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

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

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

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

    .site-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bordeaux-dark);
        padding: 20px 24px;
        gap: 4px;
        border-top: 1px solid rgba(212,175,55,0.2);
        box-shadow: 0 8px 24px rgba(43,26,29,0.3);
    }

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

    .site-nav__item a {
        display: block;
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: none;
    }

    .nav-toggle {
        display: block;
    }

    .site-header {
        position: relative;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .btn-play {
        padding: 14px 32px;
        font-size: 1rem;
    }
}