.elementor-1456 .elementor-element.elementor-element-99b718f{--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');

/* ── RESET / BASE ── */
.msl-page * { box-sizing: border-box; margin: 0; padding: 0; }
.msl-page { font-family: 'Inter', system-ui, sans-serif; color: #374151; background: #fff; }

.msl-faq-btn:hover { background: #FFF8ED; color: #f5a623; }

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

/* ── HERO ── */
.msl-hero {
  background: linear-gradient(135deg, #052155 0%, #0a2d6e 60%, #3A4D6E 100%);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.msl-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;
}
.msl-hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.msl-hero h1 .gold { color: #f5a623; }
.msl-hero p {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: #D0D8E8;
}
.msl-hero-btns {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ── BUTTONS ── */
.msl-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;
}
.msl-btn-primary { background: #f5a623; color: #fff; box-shadow: 0 4px 14px rgba(245,166,35,0.35); }
.msl-btn-primary:hover { background: #e0941e; box-shadow: 0 6px 20px rgba(245,166,35,0.45); }
.msl-btn-outline { background: transparent; color: #f5a623; border: 2px solid #f5a623; }
.msl-btn-outline:hover { background: #FFF8ED; }
.msl-btn-sm  { padding: 8px 14px; font-size: 12px; }
.msl-btn-md  { padding: 10px 20px; font-size: 14px; }

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

/* ── SECTION CARD ── */
.msl-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;
}
.msl-section-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.msl-section-heading h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #052155;
  letter-spacing: -0.02em;
}
.msl-section-bonus {
  background: linear-gradient(135deg, #FFF8ED, #FFFDF5);
  border-color: rgba(245,166,35,0.3);
}

/* ── TIP CARD ── */
.msl-tip-card {
  border: 1px solid #E0E7EF;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  transition: box-shadow 0.2s;
}
.msl-tip-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.msl-tip-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.msl-tip-header h3 { font-size: 17px; font-weight: 700; color: #052155; }
.msl-tip-header .match-meta { font-size: 12px; color: #9ca3af; margin-top: 2px; }
.msl-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;
}
.msl-odds-badge small { display: block; font-size: 10px; font-weight: 500; opacity: 0.8; text-align: center; }
.msl-tip-body { font-size: 13px; line-height: 1.7; color: #6b7280; margin-top: 16px; }
.msl-tip-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 16px; }
.msl-pick-tag { background: #F0F4FA; color: #4E73A7; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 6px; }
.msl-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; }

/* ── TABLES ── */
.msl-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.msl-table thead tr { border-bottom: 1px solid #E0E7EF; }
.msl-table thead th { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #4E73A7; padding-bottom: 12px; padding-right: 12px; text-align: left; }
.msl-table tbody tr { border-bottom: 1px solid #f3f4f6; }
.msl-table tbody tr:last-child { border-bottom: none; }
.msl-table tbody td { padding: 10px 12px 10px 0; vertical-align: middle; }
.msl-table-navy { font-weight: 600; color: #052155; }
.msl-table-blue { font-weight: 700; color: #4E73A7; }
.overflow-x-auto { overflow-x: auto; }

/* ── INFO CARDS ── */
.msl-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
@media (max-width: 640px) { .msl-grid-2 { grid-template-columns: 1fr; } }
.msl-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
@media (max-width: 640px) { .msl-grid-3 { grid-template-columns: 1fr; } }

.msl-info-card { border: 1px solid #E0E7EF; border-radius: 12px; padding: 20px; }
.msl-info-card-navy { background: #F0F4FA; border-color: rgba(78,115,167,0.3); }
.msl-info-card-gold  { background: #FFF8ED; border-color: #fde68a; }
.msl-info-card-plain { background: #f9fafb; }

.msl-tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 999px; margin-bottom: 8px; }
.msl-tag-red    { background: #fee2e2; color: #dc2626; }
.msl-tag-amber  { background: #fef3c7; color: #d97706; }
.msl-tag-blue   { background: #dbeafe; color: #1d4ed8; }
.msl-tag-purple { background: #ede9fe; color: #7c3aed; }

.msl-info-card h3 { font-size: 16px; font-weight: 700; color: #052155; margin-bottom: 8px; }
.msl-info-card p  { font-size: 13px; line-height: 1.65; color: #6b7280; }
.msl-info-card .meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: #6b7280; margin: 10px 0; }
.msl-info-card .meta strong { color: #374151; }

/* ── DISCLAIMER ── */
.msl-disclaimer { background: #fffbeb; border-radius: 8px; padding: 14px 16px; font-size: 12px; line-height: 1.6; color: #92400e; margin-top: 20px; }

/* ── PROSE ── */
.msl-prose { line-height: 1.75; color: #374151; }
.msl-prose p { margin-bottom: 16px; }
.msl-prose ol, .msl-prose ul { padding-left: 20px; }
.msl-prose li { margin-bottom: 10px; }
.msl-prose strong { color: #052155; }
.msl-prose h3 { font-size: 17px; font-weight: 700; color: #052155; margin: 24px 0 12px; }

/* ── FAQ ── */
.msl-faq-item { border: 1px solid #E0E7EF; border-radius: 12px; overflow: hidden; margin-bottom: 10px; transition: box-shadow 0.2s; }
.msl-faq-item:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.msl-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-size: 14px; font-weight: 600; color: #052155; }
.msl-faq-btn:hover { background: #f9fafb; }
.msl-faq-icon { font-size: 20px; flex-shrink: 0; margin-left: 12px; transition: transform 0.2s; }
.msl-faq-icon.open { transform: rotate(45deg); }
.msl-faq-answer { display: none; border-top: 1px solid #f3f4f6; padding: 16px 20px; font-size: 13px; line-height: 1.7; color: #6b7280; }
.msl-faq-answer.open { display: block; }

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

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