.elementor-1278 .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 ── */
.epl-page * { box-sizing: border-box; margin: 0; padding: 0; }
.epl-page { font-family: 'Inter', system-ui, sans-serif; color: #374151; background: #fff; }

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

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

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

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

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

/* ── SECTION CARD ── */
.epl-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;
}
.epl-section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.epl-section-heading h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #052155;
  letter-spacing: -0.02em;
}

/* ── BONUS SECTION ── */
.epl-section-bonus {
  background: linear-gradient(135deg, #FFF8ED, #FFFDF5);
  border-color: rgba(245,166,35,0.3);
}

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

/* ── CONFIDENCE BADGE ── */
.epl-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;
}

/* ── CONFIDENCE BAR ── */
.epl-conf-bar {
  width: 80px;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}
.epl-conf-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

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

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

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

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

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

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

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

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

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

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

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