/*
Theme Name: Palpite Sport
Theme URI: https://palpitesport.com.br
Author: Palpite Sport
Author URI: https://palpitesport.com.br
Description: Tema profissional para palpites esportivos, análises estatísticas e conteúdo SEO sobre apostas esportivas. Design moderno com identidade verde/branco/preto, responsivo e otimizado para performance.
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: palpite-sport
Tags: sports, betting, responsive, custom-post-types, seo-ready
*/

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

:root {
  --green-50: #ecfdf5;
  --green-100: #d1fae5;
  --green-200: #a7f3d0;
  --green-300: #6ee7b7;
  --green-400: #34d399;
  --green-500: #10b981;
  --green-600: #059669;
  --green-700: #047857;
  --green-800: #065f46;
  --green-900: #064e3b;
  --green-950: #022c22;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --amber-50: #fffbeb;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --white: #ffffff;
  --black: #000000;
  --border: #e5e7eb;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--gray-50);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-logo .logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--gray-900);
  line-height: 1;
}

.site-logo .logo-text span {
  color: var(--green-600);
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Navigation */
.main-nav {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-700);
  background: var(--green-50);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--gray-700);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--green-700);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}

.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-200);
}

.btn-outline:hover {
  background: var(--green-50);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  height: 48px;
}

.btn-sm {
  font-size: 0.75rem;
  padding: 0.5rem 0.875rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('https://files.manuscdn.com/user_upload_by_module/session_file/310419663028981487/mMDweYzzsanIyAFx.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.70), rgba(0,0,0,0.50), transparent);
}

.hero-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.60), transparent, rgba(0,0,0,0.20));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(5,150,105,0.2);
  border: 1px solid rgba(52,211,153,0.3);
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #86efac;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: #34d399;
}

.hero-title {
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  color: #34d399;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 480px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-feature svg {
  width: 16px;
  height: 16px;
  color: var(--green-500);
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
  .hero-content { padding: 0; }
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section { padding: 5rem 0; }
}

.section-white { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--gray-900); color: var(--white); }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-dark .section-label {
  color: #34d399;
}

.section-title {
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-top: 0.5rem;
}

.section-dark .section-title {
  color: var(--white);
}

@media (min-width: 640px) {
  .section-title { font-size: 1.875rem; }
}

.section-desc {
  color: var(--gray-500);
  margin-top: 0.5rem;
  max-width: 480px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* ===== CARD STYLES ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-xl);
}

.card-body {
  padding: 1.25rem;
}

/* ===== PALPITE CARD ===== */
.palpite-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.palpite-card:hover {
  box-shadow: var(--shadow-xl);
}

.palpite-card-header {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-image: url('https://files.manuscdn.com/user_upload_by_module/session_file/310419663028981487/FjAFfNNVJKJaFVuK.jpg');
}

.palpite-card-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.palpite-card-header-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}

.palpite-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.palpite-league {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.palpite-league svg {
  width: 16px;
  height: 16px;
  color: #34d399;
}

.palpite-league span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.palpite-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.palpite-time {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

.palpite-time svg {
  width: 14px;
  height: 14px;
}

/* Teams display in card */
.palpite-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .palpite-teams { gap: 2.5rem; }
}

.palpite-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.palpite-team-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

@media (min-width: 640px) {
  .palpite-team-logo { width: 64px; height: 64px; }
}

.palpite-team-logo-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
}

.palpite-team-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}

@media (min-width: 640px) {
  .palpite-team-name { font-size: 1rem; }
}

.palpite-vs {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

/* Card body info */
.palpite-card-body {
  background: var(--white);
  padding: 1.25rem;
}

.palpite-info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.palpite-info-item label {
  display: block;
  font-size: 0.625rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.palpite-info-item .value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.palpite-info-item .value.pick {
  font-weight: 700;
  color: var(--green-700);
}

.palpite-info-item .value.odds {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--gray-900);
}

.palpite-divider {
  width: 1px;
  height: 32px;
  background: var(--gray-200);
}

/* Bookmaker buttons section */
.bookmaker-section {
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}

.bookmaker-section-label {
  font-size: 0.625rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bookmaker-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bookmaker-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-lg);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.bookmaker-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.bookmaker-btn:active {
  transform: scale(0.95);
}

.bookmaker-btn img {
  height: 16px;
  width: auto;
  object-fit: contain;
}

.bookmaker-btn svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
}

.bookmaker-btn-lg {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-xl);
}

.bookmaker-btn-lg img {
  height: 20px;
}

.bookmaker-btn-lg svg {
  width: 14px;
  height: 14px;
}

/* ===== CONFIDENCE BADGE ===== */
.confidence-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.confidence-alto {
  background: var(--green-50);
  color: var(--green-700);
}

.confidence-alto .dot { background: var(--green-500); }

.confidence-medio {
  background: var(--amber-50);
  color: var(--amber-700);
}

.confidence-medio .dot { background: var(--amber-500); }

.confidence-baixo {
  background: var(--gray-100);
  color: var(--gray-600);
}

.confidence-baixo .dot { background: var(--gray-400); }

.confidence-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

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

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

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

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

@media (min-width: 640px) {
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* ===== LAYOUT WITH SIDEBAR ===== */
.layout-with-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1280px) {
  .layout-with-sidebar {
    flex-direction: row;
  }
}

.layout-main {
  flex: 1;
  min-width: 0;
}

.layout-sidebar {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1280px) {
  .layout-sidebar { width: 280px; }
}

.sidebar-sticky {
  position: sticky;
  top: 96px;
}

/* ===== METHODOLOGY CARDS ===== */
.method-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
}

.method-card:hover {
  box-shadow: var(--shadow-md);
}

.method-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.method-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-700);
}

.method-card h3 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.method-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== CHAMPIONSHIP CARDS ===== */
.champ-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.champ-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-200);
}

.champ-card-icon {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}

.champ-card h3 {
  font-size: 0.875rem;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.champ-card p {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ===== STATS SECTION ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #34d399;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.25rem;
}

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 176px;
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image .number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
}

.blog-card-body {
  padding: 1.25rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-50);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.blog-card h3 {
  font-size: 1rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover h3 {
  color: var(--green-700);
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.blog-card-readtime {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ===== RESPONSIBLE GAMING ===== */
.responsible-list {
  list-style: none;
  padding: 0;
}

.responsible-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.responsible-list li svg {
  width: 16px;
  height: 16px;
  color: var(--green-600);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

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

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

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--green-400);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius);
  font-size: 0.75rem;
}

.footer-legal strong {
  color: var(--red-500);
}

/* ===== MATCH PAGE HERO ===== */
.match-hero {
  position: relative;
  padding-top: 96px;
  padding-bottom: 4rem;
  overflow: hidden;
}

.match-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gray-900), #0a2e1a, var(--gray-900));
}

.match-hero-field {
  position: absolute;
  inset: 0;
  opacity: 0.12;
}

.match-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.match-hero-content {
  position: relative;
  z-index: 10;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--gray-400);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs svg {
  width: 14px;
  height: 14px;
}

.breadcrumbs .current {
  color: var(--white);
}

/* Match teams confrontation */
.match-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .match-teams { gap: 3rem; }
}

.match-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.match-team-logo-wrapper {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-2xl);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .match-team-logo-wrapper { width: 112px; height: 112px; }
}

.match-team-logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.match-team-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
}

@media (min-width: 640px) {
  .match-team-name { font-size: 1.5rem; }
}

.match-vs {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  color: rgba(255,255,255,0.3);
}

@media (min-width: 640px) {
  .match-vs { font-size: 2.25rem; }
}

/* Match summary bar */
.match-summary-bar {
  max-width: 576px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.match-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.match-summary-item label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.match-summary-item .value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.875rem;
}

.match-summary-item .value.pick {
  font-weight: 800;
  color: #34d399;
}

.match-summary-item .value.odds {
  font-weight: 800;
  font-size: 1.125rem;
}

/* ===== ANALYSIS CONTENT ===== */
.analysis-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.analysis-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.analysis-card-header svg {
  width: 20px;
  height: 20px;
  color: var(--green-600);
}

.analysis-card-header h2 {
  font-size: 1.125rem;
  color: var(--gray-900);
}

.analysis-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.analysis-content p:last-child {
  margin-bottom: 0;
}

/* Form Guide */
.form-guide {
  display: flex;
  gap: 0.375rem;
}

.form-result {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}

.form-result.win { background: var(--green-500); }
.form-result.draw { background: var(--amber-500); }
.form-result.loss { background: var(--red-500); }

/* Stats Bar */
.stats-bar-container {
  margin-bottom: 0.75rem;
}

.stats-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.stats-bar-labels .label-center {
  font-weight: 600;
  color: var(--gray-700);
}

.stats-bar {
  display: flex;
  height: 10px;
  border-radius: 9999px;
  overflow: hidden;
  background: var(--gray-100);
}

.stats-bar .bar-a {
  background: var(--green-500);
  transition: width 0.7s ease;
}

.stats-bar .bar-b {
  background: #3b82f6;
  transition: width 0.7s ease;
}

/* ===== BANNER SIDEBAR ===== */
.banner-sidebar-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1rem;
}

.banner-card {
  width: 100%;
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  color: var(--white);
  text-align: left;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border: none;
}

.banner-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.banner-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.banner-card-subtitle {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.banner-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s;
}

.banner-card:hover .banner-card-cta {
  background: rgba(255,255,255,0.3);
}

.age-notice {
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  font-size: 0.625rem;
  color: var(--gray-500);
}

.age-notice strong {
  color: var(--red-500);
}

/* ===== DAY FILTER ===== */
.day-filter {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.day-filter::-webkit-scrollbar {
  display: none;
}

.day-filter-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 72px;
}

.day-filter-btn:hover {
  border-color: var(--green-300);
}

.day-filter-btn.active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

.day-filter-btn .day-name {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.day-filter-btn .day-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.day-filter-btn.active .day-name,
.day-filter-btn.active .day-date {
  color: var(--white);
}

/* ===== FILTERS SIDEBAR ===== */
.filter-section h3 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.filter-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-option:hover {
  background: var(--green-50);
  color: var(--green-700);
}

.filter-option.active {
  background: var(--green-50);
  color: var(--green-700);
  font-weight: 600;
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--green-600);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ===== EXIT POPUP ===== */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.exit-popup-overlay.visible {
  display: flex;
}

.exit-popup {
  background: var(--white);
  border-radius: var(--radius-2xl);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: popupIn 0.3s ease;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup-header {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  padding: 2rem;
  text-align: center;
  color: var(--white);
  position: relative;
}

.exit-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.exit-popup-close:hover {
  background: rgba(255,255,255,0.3);
}

.exit-popup-body {
  padding: 2rem;
  text-align: center;
}

.exit-popup-body .features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
  text-align: left;
}

.exit-popup-body .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.exit-popup-body .feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--green-600);
  flex-shrink: 0;
}

.exit-popup-dismiss {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 0.875rem;
  cursor: pointer;
  margin-top: 0.75rem;
}

.exit-popup-dismiss:hover {
  color: var(--gray-600);
}

/* ===== SEO TEXT SECTIONS ===== */
.seo-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 2rem;
}

.seo-section h2 {
  font-size: 1.375rem;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.seo-section h3 {
  font-size: 1.125rem;
  color: var(--gray-800);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.seo-section p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.seo-section p:last-child {
  margin-bottom: 0;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.legal-page h1 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.legal-page .last-updated {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.0625rem;
  color: var(--gray-800);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

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

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WORDPRESS SPECIFIC ===== */
.wp-block-image img {
  border-radius: var(--radius-lg);
}

.entry-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.entry-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.entry-content p {
  margin-bottom: 1.25rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content blockquote {
  border-left: 4px solid var(--green-500);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--green-50);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.entry-content img {
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}

.pagination a {
  color: var(--gray-600);
  border: 1px solid var(--border);
}

.pagination a:hover {
  background: var(--green-50);
  border-color: var(--green-200);
  color: var(--green-700);
}

.pagination .current {
  background: var(--green-600);
  color: var(--white);
  border: 1px solid var(--green-600);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
