/*
 * PROJECT: boonbar.com
 * DOMAIN: boonbar.com
 * GAME: Super Ninja Adventure
 *
 * DESIGN:
 * - CSS: BEM
 * - Palette: Française Élégance (Crème #fdf6ec, Bordeaux #722f37)
 * - Effect: Gradient Mesh + subtle shadows
 * - Fonts: Libre Baskerville (heading) + Raleway (body)
 * - Buttons: Gradient with 3D hover effect
 *
 * Created: 2026
 */

@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: #f5e9d6;
  --cream-darker: #ecdbc0;
  --bordeaux: #722f37;
  --bordeaux-light: #9b4651;
  --bordeaux-dark: #4e1f25;
  --bordeaux-deep: #3a1219;
  --gold: #c9933a;
  --gold-light: #e5b96a;
  --shadow: rgba(114, 47, 55, 0.15);
  --shadow-dark: rgba(58, 18, 25, 0.3);
  --text-dark: #2c1215;
  --text-mid: #5a2d32;
  --text-light: #8c6065;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Raleway', sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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;
  color: var(--bordeaux-dark);
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; }

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

p:last-child {
  margin-bottom: 0;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--bordeaux-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-divider::before,
.section-divider::after {
  content: '';
  display: block;
  height: 1px;
  width: 60px;
  background: var(--bordeaux);
  opacity: 0.4;
}

.section-divider__ornament {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ─────────────────────────────────────────────
   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: 0.75rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
  color: var(--cream);
  box-shadow: 0 4px 0 var(--bordeaux-deep), 0 6px 16px var(--shadow-dark);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--bordeaux-light) 0%, var(--bordeaux) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--bordeaux-deep), 0 10px 24px var(--shadow-dark);
  color: var(--cream);
}

.btn--primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--bordeaux-deep), 0 4px 8px var(--shadow-dark);
}

.btn--outline {
  background: transparent;
  color: var(--bordeaux);
  border: 2px solid var(--bordeaux);
  box-shadow: 4px 4px 0 var(--bordeaux);
}

.btn--outline:hover {
  background: var(--bordeaux);
  color: var(--cream);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--bordeaux-dark);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--cream);
  box-shadow: 0 4px 0 #8a6020, 0 6px 16px rgba(201, 147, 58, 0.3);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #8a6020, 0 10px 24px rgba(201, 147, 58, 0.4);
  color: var(--cream);
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
  color: var(--cream) !important;
  border-radius: var(--radius);
  box-shadow: 0 5px 0 var(--bordeaux-deep), 0 8px 20px var(--shadow-dark);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.btn-play::before {
  content: '▶';
  font-size: 0.85em;
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 var(--bordeaux-deep), 0 14px 30px var(--shadow-dark);
  background: linear-gradient(135deg, var(--bordeaux-light) 0%, var(--bordeaux) 100%);
  color: var(--cream) !important;
}

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

.section {
  padding: 5rem 0;
}

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

.section--dark {
  background: linear-gradient(135deg, var(--bordeaux-deep) 0%, var(--bordeaux-dark) 100%);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--cream);
}

.section--dark p {
  color: rgba(253, 246, 236, 0.8);
}

.section--dark .section-subtitle {
  color: rgba(253, 246, 236, 0.6);
}

/* ─────────────────────────────────────────────
   HEADER / NAVIGATION
───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid var(--bordeaux);
  box-shadow: 0 2px 12px var(--shadow);
}

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

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

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

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

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

.nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--bordeaux);
  background: var(--cream-dark);
}

.nav__link--cta {
  background: var(--bordeaux);
  color: var(--cream) !important;
  padding: 0.5rem 1.2rem;
}

.nav__link--cta:hover {
  background: var(--bordeaux-light) !important;
  color: var(--cream) !important;
}

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

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bordeaux-dark);
  transition: all var(--transition);
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(114, 47, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 147, 58, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(114, 47, 55, 0.05) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
  position: relative;
}

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

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  background: var(--cream-dark);
  border: 1px solid var(--bordeaux);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.hero__badge::before {
  content: '⚔';
  font-size: 0.9em;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--bordeaux-deep);
}

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

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

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

.hero__meta {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-darker);
}

.hero__meta-item {
  text-align: center;
}

.hero__meta-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bordeaux);
}

.hero__meta-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

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

.hero__game-preview {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--bordeaux-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 4px var(--bordeaux),
    0 0 0 8px var(--gold),
    0 20px 60px var(--shadow-dark);
}

.hero__game-preview-inner {
  position: relative;
  padding-top: 65%;
}

.hero__game-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 18, 25, 0.45);
  transition: background var(--transition);
}

.hero__play-overlay:hover {
  background: rgba(58, 18, 25, 0.25);
}

.hero__play-btn {
  width: 72px;
  height: 72px;
  background: var(--bordeaux);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--cream);
  box-shadow: 0 0 0 6px rgba(253, 246, 236, 0.2), 0 8px 24px rgba(0,0,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero__play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(253, 246, 236, 0.3), 0 12px 32px rgba(0,0,0,0.5);
}

.hero__game-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.9rem;
  background: var(--cream-dark);
  color: var(--bordeaux);
  border: 1px solid var(--cream-darker);
  border-radius: 50px;
}

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

.feature-card {
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-card__icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

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

.feature-card__text {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   GAME SHOWCASE
───────────────────────────────────────────── */
.showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase__content .section-divider {
  justify-content: flex-start;
}

.showcase__content .section-title {
  text-align: left;
}

.showcase__content .section-subtitle {
  text-align: left;
}

.showcase__list {
  margin: 1.5rem 0 2rem;
}

.showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-darker);
  font-size: 0.95rem;
  color: var(--text-mid);
}

.showcase__list li::before {
  content: '⚔';
  color: var(--bordeaux);
  flex-shrink: 0;
  margin-top: 0.1em;
}

.showcase__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 3px var(--bordeaux),
    0 0 0 7px var(--cream-darker),
    0 20px 50px var(--shadow-dark);
}

.showcase__frame img {
  width: 100%;
  display: block;
}

.showcase__frame-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(58, 18, 25, 0.9) 0%, transparent 100%);
  color: var(--cream);
  padding: 1.5rem 1rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

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

.article-card {
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
    position: relative;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px var(--shadow-dark);
}

.article-card__image {
  height: 180px;
  background: linear-gradient(135deg, var(--bordeaux-dark), var(--bordeaux-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--cream);
  overflow: hidden;
}

.article-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

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

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

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  padding-top: 1rem;
  border-top: 1px solid var(--cream-darker);
  position: relative;
  z-index: 2;
}

/* ─────────────────────────────────────────────
   CONTROLS / HOW TO PLAY
───────────────────────────────────────────── */
.controls__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.controls-card {
  background: rgba(253, 246, 236, 0.08);
  border: 1px solid rgba(253, 246, 236, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.controls-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(253, 246, 236, 0.15);
}

.controls-card__icon {
  font-size: 1.8rem;
}

.controls-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.controls-card__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(253, 246, 236, 0.85);
  border-bottom: 1px solid rgba(253, 246, 236, 0.07);
}

.controls-card__key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  background: rgba(253, 246, 236, 0.1);
  border: 1px solid rgba(253, 246, 236, 0.25);
  border-bottom: 3px solid rgba(253, 246, 236, 0.15);
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
  padding: 0 0.4rem;
}

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

.faq__item {
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 2px 8px var(--shadow);
}

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

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

.faq__question-icon {
  font-size: 1.2rem;
  color: var(--bordeaux);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item--open .faq__question-icon {
  transform: rotate(45deg);
}

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

.faq__answer-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--cream-darker);
}

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

/* ─────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────── */
.cta-banner {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 147, 58, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--bordeaux-deep) 0%, var(--bordeaux-dark) 50%, var(--bordeaux-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(253, 246, 236, 0.015) 40px,
    rgba(253, 246, 236, 0.015) 80px
  );
}

.cta-banner__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-banner__text {
  color: rgba(253, 246, 236, 0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────
   COOKIE CONSENT
───────────────────────────────────────────── */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  max-width: 420px;
  background: var(--cream);
  border: 2px solid var(--bordeaux);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px var(--shadow-dark);
  padding: 1.5rem;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-consent__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.cookie-consent__btn {
  align-self: flex-end;
}

.cookie-consent--hidden {
  display: none;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--bordeaux-deep);
  color: rgba(253, 246, 236, 0.75);
  padding-top: 4rem;
}

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

.footer-brand__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}

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

.footer-brand__text {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-col__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.footer-col__list li {
  margin-bottom: 0.5rem;
}

.footer-col__list a {
  font-size: 0.9rem;
  color: rgba(253, 246, 236, 0.6);
  transition: color var(--transition);
}

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

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(253, 246, 236, 0.4);
}

.site-footer__bottom a {
  color: rgba(253, 246, 236, 0.5);
}

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

/* ─────────────────────────────────────────────
   PAGE HEADER (inner pages)
───────────────────────────────────────────── */
.page-header {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 147, 58, 0.1) 0%, transparent 60%),
    linear-gradient(135deg, var(--bordeaux-deep) 0%, var(--bordeaux-dark) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-header__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(253, 246, 236, 0.6);
}

.page-header__breadcrumb a {
  color: rgba(253, 246, 236, 0.7);
}

.page-header__breadcrumb a:hover {
  color: var(--gold-light);
}

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

.about-story__image {
  background: linear-gradient(135deg, var(--bordeaux-dark), var(--bordeaux-deep));
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow:
    0 0 0 3px var(--bordeaux),
    0 20px 50px var(--shadow-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition);
}

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

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

.value-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--bordeaux-dark);
  margin-bottom: 0.5rem;
}

.value-card__text {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.team-card {
  text-align: center;
  padding: 2rem;
  background: rgba(253, 246, 236, 0.05);
  border: 1px solid rgba(253, 246, 236, 0.12);
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}

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

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  box-shadow: 0 0 0 3px rgba(201, 147, 58, 0.3);
}

.team-card__name {
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.team-card__role {
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   HOW TO PLAY
───────────────────────────────────────────── */
.steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px var(--shadow);
  position: relative;
}

.step-card__number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px var(--shadow-dark);
}

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

.step-card__text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.tip-card {
  background: rgba(253, 246, 236, 0.06);
  border: 1px solid rgba(253, 246, 236, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.tip-card__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.tip-card__title span:first-child {
  font-size: 1.4rem;
}

.tip-card__text {
  font-size: 0.88rem;
  color: rgba(253, 246, 236, 0.7);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--cream-darker);
}

.contact-info__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.contact-info__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.contact-form {
  background: var(--cream-dark);
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 24px var(--shadow);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--cream);
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

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

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

/* ─────────────────────────────────────────────
   ARTICLE / BLOG INNER
───────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.article-body h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--bordeaux-dark);
}

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

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

.article-body ul,
.article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}

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

.article-body li {
  margin-bottom: 0.5rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.article-body .highlight-box {
  background: var(--cream-dark);
  border-left: 4px solid var(--bordeaux);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

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

.article-sidebar__card {
  background: var(--cream-dark);
  border: 1px solid var(--cream-darker);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-sidebar__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--bordeaux-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-darker);
}

/* ─────────────────────────────────────────────
   LEGAL PAGES
───────────────────────────────────────────── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--bordeaux-dark);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-darker);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--bordeaux);
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-mid);
  line-height: 1.7;
}

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

  .hero__visual {
    order: -1;
  }

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

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

  .showcase__content .section-divider,
  .showcase__content .section-title,
  .showcase__content .section-subtitle {
    text-align: center;
    justify-content: center;
  }

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

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

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

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

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

@media (max-width: 768px) {
  .nav__list {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 2px solid var(--bordeaux);
    box-shadow: 0 8px 24px var(--shadow);
    gap: 0;
  }

  .nav__list--open {
    display: flex;
  }

  .nav__link {
    padding: 0.75rem 1rem;
    display: block;
    border-radius: var(--radius);
  }

  .nav__toggle {
    display: flex;
  }

  .site-header {
    position: relative;
  }

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

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

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

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

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

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

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

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

  .hero__meta {
    gap: 1.5rem;
  }

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

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

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

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .cookie-consent {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}

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

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

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

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

  .hero__meta {
    gap: 1rem;
  }
}