/*
Theme Name: Ready
Theme URI: https://ready.com
Author: Ready Team
Author URI: https://ready.com
Description: Sports betting theme with black, white and gold design.
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ready
Tags: sports, betting, dark, gold, responsive
*/

/* ========== RESET ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f0f0f0; color: #222; }

/* ========== HEADER ========== */
.top-header {
  background: #111;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
}
.logo span { color: #ccc; font-weight: 300; font-size: 14px; display: block; letter-spacing: 1px; margin-top: -4px; }
.header-buttons { display: flex; gap: 10px; }
.btn-signup, .btn-login {
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
}
.btn-signup { background: #c9a84c; color: #111; border: 2px solid #c9a84c; }
.btn-signup:hover { background: #dabb65; border-color: #dabb65; }
.btn-login { background: transparent; color: #c9a84c; border: 2px solid #c9a84c; }
.btn-login:hover { background: #c9a84c; color: #111; }

/* ========== NAV BAR ========== */
.main-nav {
  background: #222;
  display: flex;
  padding: 0 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  color: #ccc;
  text-decoration: none;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a,
.main-nav ul li.current_page_item a {
  color: #c9a84c;
  background: #333;
}
.main-nav ul li a i { font-size: 16px; }
.main-nav ul li a:hover i,
.main-nav ul li.current-menu-item a i { color: #c9a84c; }

/* ========== LAYOUT ========== */
.container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80vh;
}

/* ========== SIDEBAR ========== */
.sidebar {
  width: 200px;
  background: #fff;
  border-right: 1px solid #ddd;
  padding: 10px 0;
  flex-shrink: 0;
}
.sidebar .widget { margin-bottom: 0; }
.sidebar ul { list-style: none; margin: 0; padding: 0; }
.sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.sidebar ul li a:hover,
.sidebar ul li.current-menu-item a {
  background: #f5f5f5;
  color: #c9a84c;
  font-weight: 600;
}
.sidebar ul li.current-menu-item a { border-left: 3px solid #c9a84c; }
.sidebar ul li a:hover i,
.sidebar ul li.current-menu-item a i { color: #c9a84c; }
.sidebar ul li a i { width: 20px; text-align: center; color: #888; }

/* Blog Sidebar */
.sidebar-blog {
  width: 280px;
  background: #fff;
  border-left: 1px solid #ddd;
  padding: 20px;
  flex-shrink: 0;
  order: 2;
}
.sidebar-blog .widget {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.sidebar-blog .widget:last-child { border-bottom: none; }
.sidebar-blog .widget-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c9a84c;
}
.sidebar-blog ul { list-style: none; margin: 0; padding: 0; }
.sidebar-blog ul li {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f5f5f5;
}
.sidebar-blog ul li:last-child { border-bottom: none; }
.sidebar-blog ul li a {
  color: #444;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.sidebar-blog ul li a:hover { color: #c9a84c; }
.sidebar-blog input[type="search"],
.sidebar-blog input[type="text"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
}

/* ========== MAIN CONTENT ========== */
.main-content {
  flex: 1;
  padding: 20px;
}
.main-content--full {
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}
/* Full-width container (no sidebar) */
.container--full {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80vh;
}

/* Section Headers */
.sport-section { margin-bottom: 30px; }
.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.section-title {
  background: #111;
  color: #fff;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title i { font-size: 18px; }

/* Tags/Filters */
.tag-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.tag {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #c9a84c;
  background: transparent;
  color: #c9a84c;
  transition: all 0.2s;
}
.tag:hover, .tag.active { background: #c9a84c; color: #111; border-color: #c9a84c; }

/* Match Table */
.match-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-bottom: 10px;
}
.match-table thead th {
  background: #f7f7f7;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 2px solid #eee;
}
.match-table thead th:first-child { text-align: left; }
.match-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.match-table tbody tr:hover { background: #fafafa; }
.match-table td {
  padding: 14px 16px;
  font-size: 14px;
}
.match-info { min-width: 280px; }
.match-name {
  font-weight: 700;
  font-size: 14px;
  color: #111;
  text-transform: uppercase;
}
.match-league {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.match-meta {
  text-align: center;
  min-width: 100px;
}
.live-badge {
  background: #2ecc40;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 4px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.match-date {
  font-size: 11px;
  color: #888;
  display: block;
}
.match-icons {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 4px;
}
.match-icons i { color: #bbb; font-size: 12px; cursor: pointer; }
.match-icons i:hover { color: #111; }

/* Odds Cells */
.odds-group {
  text-align: center;
  min-width: 80px;
}
.odd-cell {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 14px;
  min-width: 65px;
  cursor: pointer;
  transition: all 0.2s;
}
.odd-cell:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}
.odd-cell:hover .odd-value { color: #fff; }
.odd-cell:hover .odd-volume { color: #ccc; }
.odd-value {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
.odd-volume {
  font-size: 10px;
  color: #999;
  margin-top: 2px;
}
.odd-back { background: #e8e8e8; border-color: #ccc; }
.odd-lay { background: #f0f0f0; border-color: #ddd; }

.odds-pair {
  display: flex;
  gap: 4px;
  justify-content: center;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #111;
  color: #aaa;
  padding: 40px 30px 20px;
  margin-top: 40px;
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { font-size: 28px; margin-bottom: 10px; display: inline-block; }
.footer-logo { margin-bottom: 10px; }
.footer-logo img { max-height: 50px; width: auto; }
.footer-brand p { font-size: 13px; color: #777; line-height: 1.6; }
.site-footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul li a {
  color: #888;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.site-footer ul li a:hover { color: #fff; }
.footer-contact p {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}
.footer-bottom {
  max-width: 1400px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 12px;
  color: #555;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.05); }
.whatsapp-btn i { font-size: 20px; }

/* ========== FRONT PAGE CONTENT ========== */
html { scroll-behavior: smooth; }
.fp-card[id] { scroll-margin-top: 100px; }
.fp-content {
  margin-top: 48px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* ---- Hero Banner ---- */
.fp-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #111 100%);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.fp-hero::before {
  content: '';
  position: absolute;
  top: -60%; left: -30%;
  width: 160%; height: 220%;
  background: radial-gradient(ellipse at 40% 40%, rgba(201,168,76,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.fp-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, #c9a84c, transparent);
}
.fp-hero h1 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  letter-spacing: -0.5px;
}
.fp-hero h1 span { color: #c9a84c; }
.fp-hero .fp-hero-sub {
  font-size: 13px;
  color: #c9a84c;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}
.fp-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #999;
  font-size: 15px;
  line-height: 1.9;
  position: relative;
}

/* ---- Section Cards ---- */
.fp-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 44px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  border-left: 5px solid #c9a84c;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.fp-card:hover {
  box-shadow: 0 8px 36px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.fp-card h2 {
  font-size: 24px;
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
  border-left: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.3px;
}
.fp-card h2 i {
  color: #c9a84c;
  font-size: 22px;
  background: linear-gradient(135deg, #c9a84c20, #c9a84c10);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}
.fp-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #222;
  margin: 28px 0 14px;
  padding: 10px 0 10px 18px;
  border-left: 4px solid #c9a84c;
  background: linear-gradient(to right, #faf8f1, transparent);
  border-radius: 0 6px 6px 0;
  position: relative;
}
.fp-card h3::before { display: none; }
.fp-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 22px 0 6px;
  padding-left: 22px;
  position: relative;
}
.fp-card h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #c9a84c, #e5c96e);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}
.fp-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 14px;
}
.fp-card p strong { color: #111; font-weight: 700; }
.fp-card ul, .fp-card ol {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.fp-card ul li, .fp-card ol li {
  padding: 12px 0 12px 34px;
  position: relative;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  border-bottom: 1px solid #f5f5f5;
}
.fp-card ul li:last-child, .fp-card ol li:last-child { border-bottom: none; }
.fp-card ul li::before {
  content: '';
  position: absolute;
  left: 6px; top: 18px;
  width: 10px; height: 10px;
  background: linear-gradient(135deg, #c9a84c, #e5c96e);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.fp-card ol { counter-reset: step-c; }
.fp-card ol li { counter-increment: step-c; }
.fp-card ol li::before {
  content: counter(step-c);
  position: absolute;
  left: 0; top: 10px;
  width: 26px; height: 26px;
  background: linear-gradient(135deg, #c9a84c, #e5c96e);
  color: #111;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}

/* ---- Feature Grid ---- */
.fp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.fp-feat {
  background: linear-gradient(145deg, #fdfcf8, #fff);
  border: 1px solid #ece8dc;
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.fp-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.15);
  border-color: #c9a84c;
}
.fp-feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, #c9a84c, transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.fp-feat:hover::before { opacity: 1; }
.fp-feat i {
  color: #c9a84c;
  font-size: 28px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #c9a84c15, #c9a84c08);
  border-radius: 14px;
}
.fp-feat strong { display: block; color: #111; font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.fp-feat span { font-size: 13px; color: #777; line-height: 1.65; display: block; }

/* ---- Highlight Box ---- */
.fp-highlight {
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: #fff;
  padding: 22px 28px;
  border-radius: 12px;
  margin: 20px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  border: 1px solid #333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.fp-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: #c9a84c;
}
.fp-highlight em { color: #c9a84c; font-style: normal; font-weight: 800; }

/* ---- Payment Grid ---- */
.fp-pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.fp-pay-item {
  background: linear-gradient(145deg, #fdfcf8, #fff);
  border: 1px solid #ece8dc;
  border-radius: 12px;
  padding: 20px 22px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.fp-pay-item:hover {
  border-color: #c9a84c;
  box-shadow: 0 4px 16px rgba(201,168,76,0.12);
}
.fp-pay-item strong {
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
}
.fp-pay-item strong i { color: #c9a84c; font-size: 18px; }

/* ---- Testimonials Horizontal Scroll ---- */
.fp-testimonials-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c9a84c #f0f0f0;
}
.fp-testimonials-scroll::-webkit-scrollbar { height: 6px; }
.fp-testimonials-scroll::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 3px; }
.fp-testimonials-scroll::-webkit-scrollbar-thumb { background: #c9a84c; border-radius: 3px; }
.fp-testi-card {
  flex: 0 0 300px;
  background: linear-gradient(145deg, #fdfcf8, #fff);
  border: 1px solid #ece8dc;
  border-radius: 14px;
  padding: 28px 24px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.fp-testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.15);
  border-color: #c9a84c;
}
.fp-testi-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 18px;
  font-size: 56px;
  color: #c9a84c;
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}
.fp-testi-text {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.fp-testi-stars {
  color: #c9a84c;
  font-size: 18px;
  letter-spacing: 2px;
}
.fp-testi-author {
  color: #111;
  font-size: 14px;
  font-weight: 800;
  padding-top: 8px;
  border-top: 2px solid #c9a84c;
}

/* ---- News Cards ---- */
.fp-news {
  background: linear-gradient(145deg, #fdfcf8, #fff);
  border: 1px solid #ece8dc;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 12px 0;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.fp-news:hover {
  border-color: #c9a84c;
  box-shadow: 0 4px 16px rgba(201,168,76,0.1);
  transform: translateX(4px);
}
.fp-news strong { font-size: 14px; color: #111; display: block; font-weight: 700; flex: 1; }
.fp-news span {
  font-size: 11px;
  color: #fff;
  background: #c9a84c;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Rating & Bonus ---- */
.fp-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #c9a84c, #e5c96e);
  color: #111;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  margin: 16px 0;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.fp-bonus-badge {
  background: linear-gradient(135deg, #111, #222);
  color: #c9a84c;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  display: inline-block;
  margin: 8px 0 24px;
  border: 2px solid #c9a84c;
  box-shadow: 0 4px 20px rgba(201,168,76,0.2);
  letter-spacing: 0.3px;
}

/* ---- Divider ---- */
.fp-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #c9a84c30, #c9a84c, #c9a84c30, transparent);
  margin: 40px 0;
  border: none;
}

/* ---- Table of Contents ---- */
.fp-toc {
  background: linear-gradient(145deg, #fff, #fdfcf8);
  border-radius: 14px;
  padding: 32px 36px;
  margin-bottom: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #ece8dc;
  border-left: 5px solid #c9a84c;
}
.fp-toc h2 {
  font-size: 17px;
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fp-toc h2 i {
  color: #c9a84c;
  font-size: 18px;
  background: linear-gradient(135deg, #c9a84c20, #c9a84c10);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.fp-toc ol {
  list-style: none;
  counter-reset: toc-c;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 24px;
}
.fp-toc ol li {
  counter-increment: toc-c;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  color: #555;
  break-inside: avoid;
  transition: color 0.2s;
}
.fp-toc ol li:last-child { border-bottom: none; }
.fp-toc ol li a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.fp-toc ol li a:hover { color: #c9a84c; }
.fp-toc ol li::before {
  content: counter(toc-c, decimal-leading-zero) ".";
  color: #c9a84c;
  font-weight: 800;
  margin-right: 10px;
  font-size: 12px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .fp-hero { padding: 40px 20px; border-radius: 10px; }
  .fp-hero h1 { font-size: 24px; }
  .fp-hero .fp-hero-sub { font-size: 11px; letter-spacing: 2px; }
  .fp-card { padding: 24px 20px; border-radius: 10px; }
  .fp-card h2 { font-size: 19px; }
  .fp-card h2 i { width: 36px; height: 36px; font-size: 18px; border-radius: 10px; }
  .fp-testi-card { flex: 0 0 260px; }
  .fp-features { grid-template-columns: 1fr; }
  .fp-pay-grid { grid-template-columns: 1fr; }
  .fp-toc { padding: 24px 20px; }
  .fp-toc ol { columns: 1; }
  .fp-news { flex-direction: column; align-items: flex-start; gap: 8px; }
  .fp-rating { font-size: 13px; padding: 12px 18px; }
  .fp-bonus-badge { font-size: 15px; padding: 12px 18px; }
}

/* ========== WORDPRESS DEFAULTS ========== */
.alignleft { float: left; margin-right: 1em; }
.alignright { float: right; margin-left: 1em; }
.aligncenter { display: block; margin: 0 auto; }
img { max-width: 100%; height: auto; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .top-header { flex-wrap: wrap; gap: 10px; justify-content: center; flex-direction: column; align-items: center; }
  .header-buttons { justify-content: center; }
  .main-nav { padding: 0 10px; }
  .main-nav ul li a { padding: 12px 14px; font-size: 11px; white-space: nowrap; flex-shrink: 0; letter-spacing: 0.5px; }
  .main-nav ul li a i { font-size: 14px; }
  .container { flex-direction: column; }
  .sidebar { width: 100%; display: flex; overflow-x: auto; padding: 0; scrollbar-width: none; }
  .sidebar::-webkit-scrollbar { display: none; }
  .sidebar ul { display: flex; }
  .sidebar-sports ul { display: flex; }
  .sidebar ul li a { white-space: nowrap; padding: 10px 14px; font-size: 12px; }
  .sidebar-blog { width: 100%; order: -1; border-left: none; border-bottom: 1px solid #ddd; padding: 15px; }
  .main-content { padding: 12px; }
  .footer-content { grid-template-columns: 1fr; gap: 24px; }
  .match-table { font-size: 12px; overflow-x: auto; display: block; }
  .odds-pair { flex-wrap: nowrap; }
  .odd-cell { padding: 6px 8px; min-width: 50px; }
  .odd-value { font-size: 13px; }
}
