/*
Theme Name: Blog do Tigrinho
Theme URI: https://blogdotigrinho.net
Author: Blog do Tigrinho
Author URI: https://blogdotigrinho.net
Description: Blog independente sobre cassinos e apostas online no Brasil. Avaliações, dicas e guias sobre as melhores plataformas de apostas.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blogdotigrinho
Tags: blog, cassino, apostas, seo, gambling
*/

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --accent-gold: #f0b429;
  --accent-gold-light: #ffd166;
  --accent-orange: #ff6b2b;
  --accent-green: #00d084;
  --accent-teal: #06b6d4;
  --text-primary: #f0f0f5;
  --text-secondary: #9898a8;
  --text-muted: #5a5a6e;
  --border-subtle: rgba(255,255,255,0.07);
  --border-accent: rgba(240,180,41,0.25);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 20px rgba(240,180,41,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--accent-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-family: var(--font-display); letter-spacing: 0.03em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1.2rem; color: var(--text-secondary); }

.lead { font-size: 1.15rem; color: var(--text-primary); line-height: 1.7; }

blockquote {
  border-left: 3px solid var(--accent-gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-primary);
}

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

.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }

.grid-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

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

.site-nav a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.current-menu-item {
  color: var(--text-primary);
  background: var(--bg-card);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent-gold);
  color: #0a0a0f;
}

.btn--primary:hover {
  background: var(--accent-gold-light);
  color: #0a0a0f;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240,180,41,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn--outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(240,180,41,0.06);
}

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; border-radius: 2px; transition: all var(--transition); }

@media (max-width: 900px) {
  .site-nav, .header-cta { display: none; }
  .hamburger { display: block; }
  .site-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0; right: 0;
    background: var(--bg-secondary);
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    gap: 0.25rem;
  }
  .site-nav.mobile-open + .header-cta { display: flex; flex-direction: column; padding: 0 1rem 1rem; }
}

/* ============================================
   HERO / FEATURED AREA
   ============================================ */
.hero {
  position: relative;
  padding: 3rem 0 2.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240,180,41,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(240,180,41,0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.hero-badge::before { content: '●'; font-size: 0.5rem; }

.hero-title {
  margin-bottom: 1rem;
  max-width: 700px;
}

.hero-title span { color: var(--accent-gold); }

.hero-desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 580px; margin-bottom: 1.5rem; }

/* ============================================
   FEATURED REVIEW CARD (Banner 4win)
   ============================================ */
.platform-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.platform-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,180,41,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.platform-banner-info { display: flex; align-items: center; gap: 1.25rem; }

.platform-rating-badge {
  background: var(--accent-gold);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 2rem;
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.platform-banner-text h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.platform-banner-text p { color: var(--text-secondary); font-size: 0.85rem; margin: 0; }

.stars { color: var(--accent-gold); font-size: 0.9rem; letter-spacing: 0.05em; }

.platform-banner-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem; flex-shrink: 0; }

.platform-bonus {
  background: rgba(0,208,132,0.1);
  border: 1px solid rgba(0,208,132,0.2);
  color: var(--accent-green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.btn--4win {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
  color: #0a0a0f;
  font-size: 0.9rem;
  padding: 0.7rem 1.6rem;
}

.btn--4win:hover {
  filter: brightness(1.1);
  color: #0a0a0f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,180,41,0.3);
}

@media (max-width: 640px) {
  .platform-banner { flex-direction: column; align-items: flex-start; }
  .platform-banner-actions { align-items: flex-start; }
}

/* ============================================
   POST CARDS GRID
   ============================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 18px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.section-link { font-size: 0.8rem; color: var(--text-muted); }
.section-link:hover { color: var(--accent-gold); }

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.posts-grid--featured {
  grid-template-columns: 2fr 1fr;
  gap: 1.25rem;
}

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

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.post-card__thumb {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  aspect-ratio: 16/9;
}

.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }

.post-card__cat {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--accent-gold);
  color: #0a0a0f;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.post-card__body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.post-card__meta time { display: flex; align-items: center; gap: 0.3rem; }

.post-card__title {
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
  transition: color var(--transition);
}

.post-card:hover .post-card__title { color: var(--accent-gold); }

.post-card__excerpt { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; flex: 1; margin: 0; }

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

.read-more {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.read-more::after { content: '→'; transition: transform var(--transition); }
.post-card:hover .read-more::after { transform: translateX(3px); }

/* Featured card */
.post-card--featured .post-card__thumb { aspect-ratio: 16/10; }
.post-card--featured .post-card__title { font-size: 1.3rem; }

/* ============================================
   REVIEW WIDGET (sidebar / inline)
   ============================================ */
.review-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.review-widget__header {
  background: linear-gradient(135deg, #1a1408 0%, #201808 100%);
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.review-widget__header h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 800;
}

.review-widget__body { padding: 1.25rem; }

.review-platform {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-platform__logo {
  width: 56px;
  height: 56px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.review-platform__info h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.review-platform__info .stars { font-size: 1rem; }

.score-bars { margin: 1rem 0; }

.score-bar { margin-bottom: 0.7rem; }

.score-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.score-bar__track {
  height: 5px;
  background: var(--bg-secondary);
  border-radius: 100px;
  overflow: hidden;
}

.score-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange));
  border-radius: 100px;
  transition: width 0.8s ease;
}

.review-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1rem 0; }

.pros h5, .cons h5 {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.pros h5 { color: var(--accent-green); }
.cons h5 { color: #f06060; }

.pros li, .cons li { font-size: 0.78rem; color: var(--text-secondary); padding: 0.2rem 0; display: flex; align-items: flex-start; gap: 0.35rem; line-height: 1.4; }
.pros li::before { content: '✓'; color: var(--accent-green); font-weight: 800; flex-shrink: 0; }
.cons li::before { content: '✕'; color: #f06060; font-weight: 800; flex-shrink: 0; }

.review-widget__cta { padding: 0 1.25rem 1.25rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================
   SINGLE POST / ARTICLE
   ============================================ */
.article-header { padding: 2.5rem 0 2rem; }

.article-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(240,180,41,0.1);
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--border-accent);
  margin-bottom: 1rem;
}

.article-title { margin-bottom: 1rem; }

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

.article-meta-item { display: flex; align-items: center; gap: 0.4rem; }

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #0a0a0f;
  flex-shrink: 0;
}

.article-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  aspect-ratio: 16/7;
}

.article-thumb img { width: 100%; height: 100%; object-fit: cover; }

.article-content { font-size: 1rem; color: var(--text-secondary); }

.article-content h2 {
  font-size: 1.7rem;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.article-content h3 { font-size: 1.3rem; color: var(--text-primary); margin: 2rem 0 0.75rem; }
.article-content h4 { font-size: 1.1rem; color: var(--text-primary); margin: 1.5rem 0 0.5rem; }

.article-content p { margin-bottom: 1.2rem; }

.article-content ul, .article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  list-style: disc;
  color: var(--text-secondary);
}

.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 0.4rem; }

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.article-content th {
  background: var(--bg-card);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--border-accent);
}

.article-content td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
}

.article-content tr:last-child td { border-bottom: none; }
.article-content tr:hover td { background: var(--bg-card); }

/* Info boxes */
.info-box {
  background: var(--bg-card);
  border-left: 3px solid var(--accent-teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.info-box--warning { border-left-color: var(--accent-gold); }
.info-box--danger { border-left-color: #f06060; }
.info-box--success { border-left-color: var(--accent-green); }

.info-box strong { display: block; margin-bottom: 0.35rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent-teal); }
.info-box--warning strong { color: var(--accent-gold); }
.info-box--danger strong { color: #f06060; }
.info-box--success strong { color: var(--accent-green); }

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar { position: sticky; top: 90px; }

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.sidebar-widget h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 800;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-subtle);
}

.recent-posts-list { display: flex; flex-direction: column; gap: 0.75rem; }

.recent-post-item { display: flex; gap: 0.75rem; align-items: flex-start; }

.recent-post-thumb {
  width: 60px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; }

.recent-post-title { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); line-height: 1.4; transition: color var(--transition); }
.recent-post-title:hover { color: var(--accent-gold); }
.recent-post-date { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.2rem; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.tag-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.72rem;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  transition: all var(--transition);
}

.tag-item:hover {
  background: rgba(240,180,41,0.1);
  border-color: var(--border-accent);
  color: var(--accent-gold);
}

/* ============================================
   DISCLAIMER / AFFILIATE NOTICE
   ============================================ */
.disclaimer-bar {
  background: rgba(240,180,41,0.05);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.disclaimer-bar strong { color: var(--accent-gold); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 1rem 0;
  flex-wrap: wrap;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent-gold); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--text-secondary); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 2.5rem 0;
}

.pagination a, .pagination span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.pagination a:hover { border-color: var(--border-accent); color: var(--accent-gold); }
.pagination .current { background: var(--accent-gold); color: #0a0a0f; border-color: var(--accent-gold); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  margin-top: 4rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

@media (max-width: 900px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 580px) { .footer-main { grid-template-columns: 1fr; } }

.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-top: 0.75rem; }

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.9rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col li a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col li a:hover { color: var(--accent-gold); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal { max-width: 100%; line-height: 1.6; }

.footer-links { display: flex; gap: 1rem; flex-shrink: 0; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--accent-gold); }

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f06060;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.pt-3 { padding-top: 1.5rem; }
.pb-3 { padding-bottom: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none !important; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeUp 0.5s ease both; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ============================================
   WORDPRESS CORE ALIGNMENT
   ============================================ */
.wp-block-image { margin: 1.5rem 0; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin: 1.5rem auto; text-align: center; }
.alignfull { margin-left: calc(-50vw + 50%); max-width: 100vw; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.wp-caption { max-width: 100%; background: var(--bg-card); padding: 0.5rem; border-radius: var(--radius-sm); }
.wp-caption-text { font-size: 0.78rem; color: var(--text-muted); text-align: center; padding: 0.4rem 0 0; }

/* ============================================
   SCHEMA / SEO MARKUP HELPERS
   ============================================ */
[itemprop] { display: inherit; }
.schema-hidden { display: none; }
