/*
Theme Name: 777win Brasil
Theme URI: https://777win.com
Description: Cassino online premium — design moderno e limpo
Version: 2.0.0
Author: 777win
Text Domain: 777win-brasil
*/

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --white: #FFFFFF;
  --bg: #F8F9FA;
  --bg-alt: #F1F3F5;
  --surface: #FFFFFF;
  --gold: #C8A95B;
  --gold-dark: #A8893B;
  --gold-light: #DFC07F;
  --gold-gradient: linear-gradient(135deg, #C8A95B, #DFC07F);
  --green: #0F9D58;
  --green-dark: #0B7A43;
  --green-light: #34D399;
  --red: #E53935;
  --text: #1A1A2E;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(200,169,91,0.3);
  /* Layout */
  --container: 1200px;
  --container-sm: 960px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== SKIP LINK (a11y) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--sm { max-width: var(--container-sm); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn--gold {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(200,169,91,0.4);
}
.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(15,157,88,0.3);
}
.btn--green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(15,157,88,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--sm { padding: 10px 24px; font-size: 0.875rem; }
.btn--lg { padding: 18px 40px; font-size: 1.125rem; }

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  transition: all var(--duration) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card--bordered {
  border: 1px solid var(--border);
  box-shadow: none;
}
.card--bordered:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200,169,91,0.1), rgba(200,169,91,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge--gold {
  background: rgba(200,169,91,0.12);
  color: var(--gold-dark);
}
.badge--green {
  background: rgba(15,157,88,0.12);
  color: var(--green);
}
.badge--gray {
  background: var(--bg);
  color: var(--text-secondary);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}
.section--gray {
  background: var(--bg);
}
.section__header {
  text-align: center;
  margin-bottom: 48px;
}
.section__label {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section__title {
  margin-bottom: 16px;
}
.section__desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== GRID ===== */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--duration) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
}
.header__logo img {
  height: 40px;
  width: auto;
}
.header__logo span { color: var(--gold); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease);
  position: relative;
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--text);
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}
.header__nav a:hover::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 80px 24px 32px;
  transition: right var(--duration) var(--ease);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-drawer.is-open { right: 0; }
.mobile-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
}
.mobile-drawer__overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer__nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease);
}
.mobile-drawer__nav a:hover {
  background: var(--bg);
}
.mobile-drawer__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .header__nav, .header__actions { display: none; }
  .hamburger { display: flex; }
}

/* ==============================
   HERO
   ============================== */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #FFF9EE 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,91,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero__content { flex: 1; }
.hero__visual {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,91,0.1);
  color: var(--gold-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
}
.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; }
  .hero__inner { flex-direction: column; text-align: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__buttons { justify-content: center; }
  .hero__stats { justify-content: center; gap: 32px; }
  .hero__visual { display: none; }
}

/* ==============================
   TRUSTBAR
   ============================== */
.trustbar {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: all var(--duration) var(--ease);
}
.trustbar__item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}
.trustbar__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.trustbar__title {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}
.trustbar__text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

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

/* ==============================
   BONUS
   ============================== */
.bonus-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  border: 1px solid var(--border-light);
}
.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.bonus-card__header {
  padding: 24px 28px;
  background: var(--gold-gradient);
  color: var(--white);
}
.bonus-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  margin-bottom: 4px;
}
.bonus-card__value {
  font-size: 1.75rem;
  font-weight: 800;
}
.bonus-card__body {
  padding: 28px;
}
.bonus-card__features {
  margin-bottom: 24px;
}
.bonus-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.bonus-card__features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.bonus-card__featured {
  border-color: var(--gold);
  position: relative;
}
.bonus-card__featured::before {
  content: '⭐ Mais Popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--gold-gradient);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 1;
}

/* ==============================
   PIX SECTION
   ============================== */
.pix-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pix-stat {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: all var(--duration) var(--ease);
}
.pix-stat:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.pix-stat__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.pix-stat__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}
.pix-stat__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .pix-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================
   WHY SECTION
   ============================== */
.why-card {
  text-align: center;
  padding: 40px 28px;
}
.why-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(200,169,91,0.12), rgba(200,169,91,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}
.why-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card__text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ==============================
   SPORTS SECTION
   ============================== */
.sports__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.sports__content { flex: 1; }
.sports__visual { flex: 1; }
.sports__list {
  margin: 24px 0 32px;
}
.sports__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}
.sports__list li:last-child { border-bottom: none; }
.sports__list li span:first-child {
  font-size: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sports__inner { flex-direction: column; }
  .sports__visual { display: none; }
}

/* ==============================
   APP SECTION
   ============================== */
.app__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.app__content { flex: 1; }
.app__visual { flex: 1; text-align: center; }
.app__features {
  margin: 24px 0 32px;
}
.app__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.app__features li::before {
  content: '📱';
  flex-shrink: 0;
}
.app__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .app__inner { flex-direction: column-reverse; }
  .app__visual { display: none; }
}

/* ==============================
   FAQ
   ============================== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}
.faq__item.is-open {
  border-color: var(--gold);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  background: var(--surface);
  border: none;
  color: var(--text);
  transition: background var(--duration) var(--ease);
}
.faq__question:hover { background: var(--bg); }
.faq__icon {
  font-size: 1.25rem;
  color: var(--text-light);
  transition: transform var(--duration) var(--ease);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  color: var(--gold);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq__answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ==============================
   RESPONSIBLE GAMING
   ============================== */
.responsible__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.responsible__card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
}
.responsible__card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.responsible__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.responsible__title {
  font-weight: 700;
  margin-bottom: 8px;
}
.responsible__text {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

/* ==============================
   SEO TEXT
   ============================== */
.seo-content {
  max-width: 800px;
  margin: 0 auto;
}
.seo-content h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}
.seo-content p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}
.seo-content a {
  color: var(--gold);
  font-weight: 500;
}
.seo-content a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer__main {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 16px;
  line-height: 1.7;
}
.footer__heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--duration) var(--ease);
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copyright {
  font-size: 0.8125rem;
  color: var(--text-light);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.8125rem;
  color: var(--text-light);
}
.footer__legal a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer__main { grid-template-columns: 1fr; }
}

/* ==============================
   ARCHIVE / GRID PAGES
   ============================== */
.archive-header {
  padding: 140px 0 40px;
  background: var(--bg);
  text-align: center;
}
.archive-header__title { margin-bottom: 12px; }
.archive-header__desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: all var(--duration) var(--ease);
  border: 1px solid var(--border-light);
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.game-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.game-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.game-card:hover .game-card__image img {
  transform: scale(1.05);
}
.game-card__body {
  padding: 20px;
}
.game-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.game-card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.game-card__cta {
  width: 100%;
}

/* Guide card */
.guide-card {
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: all var(--duration) var(--ease);
  border: 1px solid var(--border-light);
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.guide-card__badges {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.guide-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.guide-card__title a:hover { color: var(--gold); }
.guide-card__excerpt {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ==============================
   SINGLE POST / GAME / GUIDE
   ============================== */
.single-header {
  padding: 120px 0 40px;
  background: var(--bg);
}
.single-header__breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.single-header__breadcrumbs a:hover { color: var(--gold); }
.single-header__breadcrumbs span { color: var(--text-light); }

.single-content {
  padding: 48px 0;
}
.single-content__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.single-content__main {
  min-width: 0;
}
.single-content__sidebar {
  position: sticky;
  top: 96px;
}

/* Prose */
.prose h2 { margin: 40px 0 16px; font-size: 1.5rem; }
.prose h3 { margin: 32px 0 12px; font-size: 1.25rem; }
.prose p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; color: var(--text-secondary); }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--gold); font-weight: 500; }
.prose a:hover { text-decoration: underline; }
.prose img { border-radius: var(--radius-sm); margin: 24px 0; }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* Game Specs Table */
.game-specs {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.game-specs th,
.game-specs td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9375rem;
}
.game-specs th {
  font-weight: 600;
  color: var(--text);
  width: 40%;
}
.game-specs td {
  color: var(--text-secondary);
}
.game-specs tr:last-child th,
.game-specs tr:last-child td { border-bottom: none; }

/* Sidebar Card */
.sidebar-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

@media (max-width: 1024px) {
  .single-content__grid { grid-template-columns: 1fr; }
  .single-content__sidebar { position: static; }
}

/* ==============================
   PAGINATION
   ============================== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--duration) var(--ease);
}
.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.pagination .current {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ==============================
   AUTHOR BOX
   ============================== */
.author-box {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius);
  margin-top: 40px;
}
.author-box__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box__name {
  font-weight: 700;
  margin-bottom: 4px;
}
.author-box__bio {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ==============================
   COMPLIANCE STRIP
   ============================== */
.compliance-strip {
  padding: 24px 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
}
.compliance-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.compliance-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ==============================
   UTILITIES
   ============================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }

/* ==============================
   RESPONSIVE FINE-TUNING
   ============================== */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section__header { margin-bottom: 32px; }
  .card { padding: 24px; }
  .btn { padding: 12px 24px; font-size: 0.9375rem; }
  .btn--lg { padding: 14px 32px; font-size: 1rem; }
}
