.elementor-1367 .elementor-element.elementor-element-8050e5c{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── BASE ── */
.fifa-page * { box-sizing: border-box; margin: 0; padding: 0; }
.fifa-page {
  font-family: 'Inter', system-ui, sans-serif;
  color: #374151;
  background: #fff;
  line-height: 1.6;
}
.fifa-page a { text-decoration: none; }

/* ── TICKER ── */
@keyframes fifa-ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fifa-ticker-wrap {
  overflow: hidden;
  background: #052155;
  border-bottom: 1px solid #3A4D6E;
  padding: 12px 0;
}
.fifa-ticker {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: fifa-ticker-scroll 40s linear infinite;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.fifa-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fifa-ticker-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f5a623;
  flex-shrink: 0;
}

/* ── NAV ── */
.fifa-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #E0E7EF;
  backdrop-filter: blur(4px);
}
.fifa-nav-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fifa-logo {
  font-size: 18px;
  font-weight: 900;
  color: #052155;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fifa-logo span { color: #f5a623; }
.fifa-nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.fifa-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #4E73A7;
  text-decoration: none;
}
.fifa-nav-links a:hover { color: #f5a623; }
@media (max-width: 768px) { .fifa-nav-links { display: none; } }

/* ── HERO ── */
.fifa-hero {
  background: linear-gradient(135deg, #052155 0%, #0a2d6e 60%, #3A4D6E 100%);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.fifa-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.fifa-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(78,115,167,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.fifa-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.fifa-hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.2);
  color: #f5c542;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.fifa-hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.fifa-hero h1 .gold { color: #f5a623; }
.fifa-hero p {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.7;
  color: #D0D8E8;
}
.fifa-hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ── BUTTONS ── */
.fifa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.fifa-btn-primary {
  background: #f5a623;
  color: #fff;
  box-shadow: 0 4px 14px rgba(245,166,35,0.35);
}
.fifa-btn-primary:hover { background: #e0941e; box-shadow: 0 6px 20px rgba(245,166,35,0.45); }
.fifa-btn-outline {
  background: transparent;
  color: #f5a623;
  border: 2px solid #f5a623;
}
.fifa-btn-outline:hover { background: #FFF8ED; }
.fifa-btn-sm { padding: 8px 14px; font-size: 12px; }
.fifa-btn-md { padding: 10px 20px; font-size: 14px; }

/* ── LAYOUT ── */
.fifa-layout {
  max-width: 1152px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.fifa-main { flex: 1; min-width: 0; }
.fifa-sidebar { width: 320px; flex-shrink: 0; }
@media (max-width: 1024px) {
  .fifa-layout { flex-direction: column; }
  .fifa-sidebar { width: 100%; }
}

/* ── SECTION CARD ── */
.fifa-section {
  background: #fff;
  border: 1px solid #E0E7EF;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  scroll-margin-top: 80px;
}
.fifa-section-bonus {
  background: linear-gradient(135deg, #FFF8ED, #FFFDF5);
  border-color: rgba(245,166,35,0.3);
}
.fifa-section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.fifa-section-heading h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #052155;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ── TOURNAMENT CARDS ── */
.fifa-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .fifa-grid-2 { grid-template-columns: 1fr; } }

.fifa-tournament-card {
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #E0E7EF;
}
.fifa-tournament-card.blue  { background: #F0F4FA; border-color: rgba(78,115,167,0.3); }
.fifa-tournament-card.amber { background: #fffbeb; border-color: #fde68a; }
.fifa-tournament-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #052155;
  margin: 8px 0;
}
.fifa-tournament-card p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 12px;
}
.fifa-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 14px;
}
.fifa-meta strong { color: #374151; }

/* ── BADGES ── */
.fifa-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}
.fifa-badge-live   { background: #fee2e2; color: #dc2626; }
.fifa-badge-soon   { background: #fef3c7; color: #d97706; }
.fifa-badge-wc     { background: #dbeafe; color: #1d4ed8; }
.fifa-badge-inj    { background: #fee2e2; color: #dc2626; }
.fifa-badge-guide  { background: #ede9fe; color: #7c3aed; }

/* ── TIP CARDS ── */
.fifa-tip-card {
  border: 1px solid #E0E7EF;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  transition: box-shadow 0.2s;
}
.fifa-tip-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.fifa-tip-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.fifa-tip-header h3 { font-size: 17px; font-weight: 700; color: #052155; margin: 0; }
.fifa-tip-header .match-meta { font-size: 12px; color: #9ca3af; margin-top: 2px; }
.fifa-odds-badge {
  background: #052155;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  flex-shrink: 0;
  min-width: 72px;
}
.fifa-odds-badge small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.8;
  text-align: center;
}
.fifa-tip-body { font-size: 13px; line-height: 1.7; color: #6b7280; margin-top: 16px; }
.fifa-tip-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 16px; }
.fifa-pick-tag {
  background: #F0F4FA;
  color: #4E73A7;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
}
.fifa-confidence {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0F4FA;
  color: #4E73A7;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
}
.fifa-tips-list {
  margin-top: 20px;
  padding-left: 20px;
  font-size: 13px;
  color: #4b5563;
}
.fifa-tips-list li { margin-bottom: 6px; }

/* ── PREDICTIONS TABLE ── */
.fifa-table-wrap { overflow-x: auto; }
.fifa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}
.fifa-table thead tr { border-bottom: 1px solid #E0E7EF; }
.fifa-table thead th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4E73A7;
  padding-bottom: 12px;
  padding-right: 16px;
}
.fifa-table tbody tr { border-bottom: 1px solid #f3f4f6; }
.fifa-table tbody tr:last-child { border-bottom: none; }
.fifa-table tbody td { padding: 12px 16px 12px 0; vertical-align: middle; }
.fifa-table .match-name { font-weight: 600; color: #052155; }
.fifa-table .match-detail { font-size: 11px; color: #9ca3af; }

/* ── CONFIDENCE BAR ── */
.fifa-conf-bar { display: flex; align-items: center; gap: 8px; }
.fifa-conf-track {
  width: 72px; height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}
.fifa-conf-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  transition: width 0.6s ease;
}
.fifa-conf-pct { font-size: 11px; font-weight: 700; color: #374151; }

/* ── NEWS ── */
.fifa-news-main {
  border: 1px solid #E0E7EF;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 20px;
  background: linear-gradient(90deg, #f9fafb, #fff);
  margin-bottom: 20px;
}
.fifa-news-main .icon { font-size: 28px; flex-shrink: 0; }
.fifa-news-main h3 { font-size: 16px; font-weight: 700; color: #052155; margin: 8px 0; }
.fifa-news-main p  { font-size: 13px; line-height: 1.65; color: #6b7280; }
.fifa-news-meta { font-size: 11px; color: #9ca3af; margin-top: 8px; }
.fifa-news-link { font-size: 13px; font-weight: 600; color: #f5a623; text-decoration: none; display: inline-block; margin-top: 8px; }
.fifa-news-link:hover { color: #e0941e; }
.fifa-news-card {
  border: 1px solid #E0E7EF;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
}
.fifa-news-card h3 { font-size: 15px; font-weight: 700; color: #052155; margin: 8px 0; }
.fifa-news-card p  { font-size: 13px; color: #6b7280; line-height: 1.65; }

/* ── FAQ ── */
.fifa-faq-item {
  border: 1px solid #E0E7EF;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  transition: box-shadow 0.2s;
}
.fifa-faq-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.fifa-faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; color: #052155;
  transition: background 0.15s;
}
.fifa-faq-btn:hover { background: #f9fafb; }
.fifa-faq-icon { font-size: 20px; flex-shrink: 0; margin-left: 12px; transition: transform 0.2s; }
.fifa-faq-icon.open { transform: rotate(45deg); }
.fifa-faq-answer {
  display: none;
  border-top: 1px solid #f3f4f6;
  padding: 16px 20px;
  font-size: 13px; line-height: 1.7; color: #6b7280;
}
.fifa-faq-answer.open { display: block; }

/* ── SIDEBAR WIDGETS ── */
.fifa-widget {
  background: #fff;
  border: 1px solid #E0E7EF;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}
.fifa-widget h3 {
  font-size: 16px;
  font-weight: 700;
  color: #052155;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fifa-widget-book {
  border: 1px solid #E0E7EF;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}
.fifa-widget-book-navy   { background: #F0F4FA; border-color: rgba(78,115,167,0.2); }
.fifa-widget-book-blue   { background: #eff6ff; border-color: #bfdbfe; }
.fifa-widget-book-purple { background: #f5f3ff; border-color: #ddd6fe; }
.fifa-widget-book-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.fifa-widget-book-name { font-weight: 800; color: #052155; }
.fifa-widget-bonus {
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px; color: #fff;
}
.fifa-bonus-gold   { background: #f5a623; }
.fifa-bonus-navy   { background: #4E73A7; }
.fifa-bonus-purple { background: #7c3aed; }

/* ── ODDS TABLE ── */
.fifa-odds-table { width: 100%; font-size: 13px; border-collapse: collapse; }
.fifa-odds-table tr { border-bottom: 1px solid #f3f4f6; }
.fifa-odds-table tr:last-child { border-bottom: none; }
.fifa-odds-table td { padding: 9px 0; color: #374151; }
.fifa-odds-table .odds-val { text-align: right; font-weight: 800; color: #052155; }
.fifa-odds-table .odds-nat { text-align: right; font-weight: 800; color: #4E73A7; }

/* ── FIFA FAQ button — orange on hover ── */
.fifa-faq-btn:hover {
  background: #FFF8ED;
  color: #f5a623;
}
.fifa-disclaimer {
  background: #fffbeb;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 12px;
  line-height: 1.6;
  color: #92400e;
  margin-top: 20px;
}

/* ── FOOTER ── */
.fifa-footer {
  background: #052155;
  border-top: 1px solid #3A4D6E;
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}
.fifa-footer-icons { display: flex; justify-content: center; gap: 16px; margin-bottom: 12px; font-size: 20px; }
.fifa-footer p { line-height: 1.7; }
.fifa-footer .small { font-size: 11px; color: #6b7280; margin-top: 8px; }

html { scroll-behavior: smooth; }/* End custom CSS */