.elementor-2735 .elementor-element.elementor-element-09a6d49{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-620ac18 */*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-neon:    #00e676;
  --green-lime:    #aaff00;
  --gold:          #f5c842;
  --bg-deep:       #040e06;
  --bg-section:    #061009;
  --bg-card:       #081508;
  --bg-row:        #071208;
  --bg-row-alt:    #050e07;
  --border:        rgba(0,230,118,0.14);
  --border-bright: rgba(0,230,118,0.3);
  --text-white:    #ffffff;
  --text-body:     rgba(255,255,255,0.75);
  --text-muted:    rgba(0,230,118,0.45);
  --text-dim:      rgba(0,230,118,0.2);

  /* Tip pill colours */
  --tip-btts:   #00c853;
  --tip-over:   #f5c842;
  --tip-under:  #2196f3;
  --tip-x2:     #ab47bc;
  --tip-1x:     #ab47bc;
  --tip-2:      #ff7043;
}

/* ── BASE ── */
html, body {
  min-height: 100vh;
  background: var(--bg-deep);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── SCANLINE ── */
.scanline {
  position: fixed;
  top: -3px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, transparent, rgba(0,230,118,0.12), transparent);
  animation: scan 6s linear infinite;
  z-index: 10;
  pointer-events: none;
}
@keyframes scan { from { top: -3px; } to { top: 100vh; } }

/* ── GRID BG ── */
.fp-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,230,118,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* glows */
.fp-glow-left {
  position: absolute;
  top: 0; left: -10%;
  width: 500px; height: 100%;
  background: radial-gradient(ellipse at left center, rgba(0,60,20,0.35) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.fp-glow-right {
  position: absolute;
  top: 0; right: -10%;
  width: 500px; height: 100%;
  background: radial-gradient(ellipse at right center, rgba(0,40,15,0.3) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* ── SECTION ── */
.fp-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 60px 40px 80px;
}

.fp-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  width: 100%;
}

/* ══════════════════════
   HERO HEADER
══════════════════════ */
.fp-hero {
  text-align: center;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s ease forwards;
}

/* live dot badge */
.fp-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.fp-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-neon);
  box-shadow: 0 0 10px var(--green-neon);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--green-neon); }
  50%       { opacity: 0.5; box-shadow: 0 0 4px var(--green-neon); }
}

.fp-live-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-neon);
  opacity: 0.7;
}

/* headline */
.fp-headline {
  line-height: 0.9;
  margin-bottom: 14px;
}

.fp-headline-free {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 14vw, 10rem);
  letter-spacing: 0.06em;
  color: var(--green-lime);
  text-shadow:
    0 0 30px rgba(170,255,0,0.7),
    0 0 80px rgba(170,255,0,0.25);
  animation: fp-flicker 10s 3s infinite;
}

.fp-headline-pred {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--text-white);
  letter-spacing: -0.02em;
}

@keyframes fp-flicker {
  0%,96%,100% { opacity:1; text-shadow: 0 0 30px rgba(170,255,0,0.7), 0 0 80px rgba(170,255,0,0.25); }
  96.5%        { opacity:0.7; text-shadow: none; }
  97%          { opacity:1; text-shadow: 0 0 30px rgba(170,255,0,0.7); }
  97.5%        { opacity:0.8; text-shadow: none; }
  98%          { opacity:1; text-shadow: 0 0 30px rgba(170,255,0,0.7), 0 0 80px rgba(170,255,0,0.25); }
}

.fp-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* date navigator */
.fp-date-nav {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 20px;
}

.fp-nav-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-bright);
  background: rgba(0,230,118,0.06);
  color: var(--green-neon);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
}
.fp-nav-btn:hover {
  background: rgba(0,230,118,0.14);
  box-shadow: 0 0 12px rgba(0,230,118,0.2);
}

.fp-date-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.fp-date-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fp-date-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--text-white);
}

/* ══════════════════════
   STATS BAR
══════════════════════ */
.fp-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s 0.3s ease forwards;
}

.fp-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 18px 12px;
  transition: background 0.2s;
}
.fp-stat:hover { background: rgba(0,230,118,0.04); }

.fp-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1;
}

.fp-stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fp-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════
   PREDICTIONS TABLE
══════════════════════ */
.fp-table-wrap {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.45s ease forwards;
}

/* Table header */
.fp-table-head {
  display: grid;
  grid-template-columns: 2.5fr 0.8fr 1fr 0.7fr 0.9fr;
  padding: 14px 24px;
  background: rgba(0,230,118,0.06);
  border-bottom: 1px solid var(--border-bright);
}

.fp-table-head span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Table body */
.fp-table-body { background: var(--bg-row); }

/* Rows */
.fp-row {
  display: grid;
  grid-template-columns: 2.5fr 0.8fr 1fr 0.7fr 0.9fr;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.fp-row:last-child { border-bottom: none; }
.fp-row:nth-child(even) { background: var(--bg-row-alt); }
.fp-row:hover { background: rgba(0,230,118,0.03); }

/* match cell */
.col-match {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.row-teams {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-white);
}

.row-league {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* time */
.col-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--text-body);
}

/* tips */
.col-tip {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 4px;
  width: fit-content;
  text-transform: uppercase;
}

.tip-btts,
.tip-over,
.tip-under,
.tip-x2,
.tip-1x,
.tip-2 {
  background: rgba(0,230,118,0.1);
  color: #00e676;
  border: 1px solid rgba(0,230,118,0.3);
}

/* odds */
.col-odds {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

/* results */
.col-result {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: right;
}
.result-win     { color: #00e676; }
.result-loss    { color: #ff5252; }
.result-pending { color: rgba(255,255,255,0.25); font-size: 1rem; }

/* ══════════════════════
   CTA STRIP
══════════════════════ */
.fp-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  background: linear-gradient(135deg, rgba(245,200,66,0.07) 0%, rgba(0,230,118,0.05) 100%);
  border: 1px solid rgba(245,200,66,0.22);
  border-radius: 10px;
  opacity: 0;
  animation: fadeUp 0.6s 0.65s ease forwards;
}

.fp-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 6px;
}

.fp-cta-desc {
  font-size: 0.85rem;
  color: var(--text-body);
}

.fp-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  background: var(--gold);
  color: #050f06;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(245,200,66,0.25);
}
.fp-cta-btn:hover {
  background: #ffd740;
  box-shadow: 0 6px 28px rgba(245,200,66,0.4);
  transform: translateY(-2px);
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .fp-table-head,
  .fp-row {
    grid-template-columns: 2fr 0.6fr 1fr 0.6fr 0.8fr;
    padding: 12px 16px;
    gap: 4px;
  }

  .fp-cta-strip {
    flex-direction: column;
    text-align: center;
  }

  .fp-cta-btn { width: 100%; justify-content: center; }

  .fp-section { padding: 40px 16px 60px; }

  .fp-headline-free { font-size: clamp(4rem, 18vw, 8rem); }
}

@media (max-width: 520px) {
  .col-result,
  .fp-table-head .col-result { display: none; }

  .fp-table-head,
  .fp-row { grid-template-columns: 2fr 0.6fr 1fr 0.6fr; }

  .fp-stats-bar { flex-wrap: wrap; }
  .fp-stat { flex: 1 1 45%; border-bottom: 1px solid var(--border); }
  .fp-stat-sep { display: none; }
}/* End custom CSS */