﻿/* ============================================================
   PIN-UP OFFICIAL NIGERIA — Global Stylesheet
   Domain: pin-up-official.ng | Lang: en-NG
   Colors: #000 header | #1D2024 body | #F23E2E red | #2DB6A3 teal
   ============================================================ */

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

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

:root {
  --red:        #F23E2E;
  --red-dark:   #c92d1e;
  --teal:       #2DB6A3;
  --teal-dark:  #1f8a7a;
  --black:      #000000;
  --bg-dark:    #1D2024;
  --bg-card:    #25292E;
  --bg-input:   #2B2E33;
  --border:     #3E4147;
  --text-white: #FFFFFF;
  --text-gray:  #B8BBC2;
  --text-muted: #787D88;
  --max-w:      1180px;
  --header-h:   88px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --transition: 0.25s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -50px; left: 0;
  background: var(--teal); color: #fff;
  padding: 10px 20px; font-weight: 700;
  z-index: 9999; border-radius: 0 0 6px 0;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  letter-spacing: .03em;
}
.topbar a {
  color: #fff;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 700;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo-img {
  height: 65px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-gray);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.header-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 950;
  flex-direction: column;
  padding: 24px 28px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  align-self: flex-end;
  font-size: 24px;
  color: var(--text-gray);
  padding: 4px;
  margin-bottom: 28px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav a {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-nav a:last-child { border-bottom: none; }
.btn-full { width: 100%; text-align: center; border-radius: var(--radius-md) !important; margin-top: 24px; padding: 16px !important; justify-content: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  transition: all var(--transition);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242,62,46,.35);
}
.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,182,163,.35);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-md); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--border); }

/* ===== HERO ===== */
.site-hero {
  background: linear-gradient(135deg, #0a0c0f 0%, #1a1d22 50%, #0f1115 100%);
  padding: 60px 0 52px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242,62,46,.12) 0%, transparent 70%);
  pointer-events: none;
}
.site-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(45,182,163,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242,62,46,.15);
  border: 1px solid rgba(242,62,46,.3);
  color: #F23E2E;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}
.hero-title span { color: var(--red); }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-author-block {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-author-img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
}
.hero-author-name {
  font-weight: 700;
  font-size: 14px;
}
.hero-author-role {
  font-size: 12px;
  color: var(--text-muted);
}
.hero-meta-divider {
  width: 1px; height: 24px;
  background: var(--border);
}
.hero-meta-item {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 680px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Stats (Rating Card) */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.hero-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.rating-big {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.rating-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.rating-max {
  font-size: 20px;
  color: var(--text-muted);
}
.stars {
  color: #FFC629;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.rating-label {
  font-size: 13px;
  color: var(--text-gray);
  width: 90px;
  flex-shrink: 0;
}
.rating-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--red));
  border-radius: 3px;
  transition: width 1.2s ease;
  width: 0;
}

.rating-val {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  width: 30px;
  text-align: right;
}
.hero-card-cta {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
}
.hero-card-bonus {
  background: rgba(242,62,46,.1);
  border: 1px solid rgba(242,62,46,.25);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 16px;
  text-align: center;
}
.hero-card-bonus-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.hero-card-bonus-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
}

/* ===== CONTENT LAYOUT ===== */
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 52px 0 80px;
  align-items: start;
}
.main-content { min-width: 0; }
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); }

/* ===== ARTICLE HEADINGS + BODY ===== */
.article h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 44px 0 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.article h2:first-child { margin-top: 0; border-top: none; }
.article h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin: 28px 0 12px;
}
.article p {
  color: var(--text-gray);
  margin-bottom: 18px;
  line-height: 1.78;
  font-size: 15px;
}
.article ul, .article ol {
  margin-bottom: 18px;
  padding-left: 0;
}
.article ul li, .article ol li {
  color: var(--text-gray);
  font-size: 15px;
  padding: 7px 0 7px 22px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  position: relative;
  line-height: 1.65;
}
.article ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.article ol { counter-reset: list-counter; }
.article ol li { counter-increment: list-counter; }
.article ol li::before {
  content: counter(list-counter) '.';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ===== TABLES ===== */
.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
thead th {
  background: var(--bg-input);
  color: var(--text-white);
  font-weight: 700;
  padding: 13px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
  letter-spacing: .03em;
  font-size: 13px;
  text-transform: uppercase;
}
tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--text-gray);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(255,255,255,.03); }
.td-green { color: #4ADE80; font-weight: 700; }
.td-red { color: var(--red); font-weight: 700; }
.td-teal { color: var(--teal); font-weight: 700; }
.td-bold { color: #fff; font-weight: 700; }

/* ===== STAT CARDS ROW ===== */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.stat-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}
.stat-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .02em;
}

/* ===== INFO BOX ===== */
.info-box {
  background: rgba(45,182,163,.07);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.info-box p {
  margin-bottom: 0;
  font-size: 14px;
  color: #b0e8e3;
}
.info-box strong { color: var(--teal); }

.warn-box {
  background: rgba(242,62,46,.07);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.warn-box p { margin-bottom: 0; font-size: 14px; color: #f5b5ae; }

/* ===== CHART BARS (CSS Only) ===== */
.chart-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 28px 0;
}
.chart-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text-white);
}
.chart-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.chart-bar-label {
  font-size: 13px;
  color: var(--text-gray);
  width: 120px;
  flex-shrink: 0;
}
.chart-bar-track {
  flex: 1;
  height: 28px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.chart-bar-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  transition: width 1.4s ease;
  width: 0;
  white-space: nowrap;
}
.bar-red { background: linear-gradient(90deg, var(--red), #c92d1e); }
.bar-teal { background: linear-gradient(90deg, var(--teal), #1f8a7a); }
.bar-gold { background: linear-gradient(90deg, #FFC629, #e0a600); }
.bar-purple { background: linear-gradient(90deg, #8B5CF6, #6D28D9); }
.bar-green  { background: linear-gradient(90deg, #4ADE80, #22c55e); }

/* ===== BONUS CARDS ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.bonus-card:hover {
  border-color: rgba(242,62,46,.5);
  transform: translateY(-2px);
}
.bonus-card.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(242,62,46,.08) 0%, var(--bg-card) 100%);
}
.bonus-card-type {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 10px;
}
.bonus-card-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.bonus-card-detail {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
}
.bonus-card-detail span:first-child { color: var(--text-gray); }

/* ===== PAYMENT METHODS ===== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition);
}
.payment-card:hover { border-color: var(--teal); }
.payment-name { font-size: 15px; font-weight: 700; }
.payment-type { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.payment-time { font-size: 12px; color: var(--teal); font-weight: 600; }
.payment-min { font-size: 12px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== SIDEBAR ===== */
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 18px;
}
.sidebar-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.toc-link {
  display: block;
  font-size: 13px;
  color: var(--text-gray);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color var(--transition), padding var(--transition);
}
.toc-link:hover, .toc-link.active {
  color: var(--teal);
  padding-left: 6px;
}
.toc-link:last-child { border-bottom: none; }

/* ===== AUTHOR BLOCK ===== */
.author-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 40px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.author-block-img {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
  flex-shrink: 0;
}
.author-block-name {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.author-block-role {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.author-block-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}
.author-block-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
}

/* ===== SECTION LABELS ===== */
.section-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-gray);
  max-width: 620px;
}

/* ===== STEP CARDS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  position: relative;
}
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: rgba(242,62,46,.15);
  line-height: 1;
  margin-bottom: 10px;
}
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ===== GAME GRID ===== */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.game-card:hover { border-color: var(--red); transform: translateY(-2px); }
.game-card-emoji { font-size: 28px; margin-bottom: 8px; display: block; }
.game-card-name { font-size: 13px; font-weight: 700; color: var(--text-white); margin-bottom: 4px; }
.game-card-rtp { font-size: 12px; color: var(--teal); font-weight: 600; }

/* ===== HIGHLIGHT BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-red { background: rgba(242,62,46,.15); border: 1px solid rgba(242,62,46,.3); color: var(--red); }
.badge-teal { background: rgba(45,182,163,.15); border: 1px solid rgba(45,182,163,.3); color: var(--teal); }
.badge-gold { background: rgba(255,198,41,.12); border: 1px solid rgba(255,198,41,.3); color: #FFC629; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0A0C0F;
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo-img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
  letter-spacing: .04em;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal); }
.footer-disclaimer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--teal); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0a0c0f 0%, #151820 100%);
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--border);
}
.page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 14px;
}
.page-hero-desc {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 680px;
  line-height: 1.7;
}

/* ===== PAGE IMAGE BLOCK ===== */
.page-img-block {
  margin: 28px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.page-img-block img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}
.page-img-block:hover img {
  transform: scale(1.01);
}

/* ===== HERO IMAGE ===== */
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 48px rgba(0,0,0,.5);
}
.hero-img-wrap img { width: 100%; height: auto; display: block; }

/* Adjust logo display */
.site-logo-img   { height: 52px; width: auto; object-fit: contain; }
.footer-logo-img { height: 40px; width: auto; object-fit: contain; }

/* Author image fallback */
.author-block-img {
  background: linear-gradient(135deg, var(--red) 0%, var(--teal) 100%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { position: static; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 26px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: repeat(2,1fr); }
  .game-grid { grid-template-columns: repeat(2,1fr); }
  .section-title { font-size: 22px; }
  .author-block { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-meta-divider { display: none; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2,1fr); }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #1D2024; border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 20px; display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap; font-size: 13px; color: #B8BBC2;
}
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--teal); }
.cookie-banner-btn { padding: 8px 20px; background: var(--red); color: #fff; border: none; border-radius: 6px; cursor: pointer; font-weight: 700; white-space: nowrap; }
.cookie-banner.hidden { display: none; }