body { visibility: hidden; }
body {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: 80px;
  background: var(--site-bg); 
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text-color); 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
}

:root {
  --site-bg:#ebeef1;
  --header-bg:#171733;
  --live-bg:#fe6161;
  --live-text:#fe6161;
  --text-color: oklch(37.3% 0.034 259.733);
  --text-color-bold: #595959;
  --card-bg-color: #ffffff;
  --border-color: #e5e5e5;
  --link-color: #2563eb;      
  --link-hover: #1d4ed8;
  --link-underline: rgba(37, 99, 235, 0.35);
  --teams-names: #171733;
  --hover-matches:#ecf5fc;
  
}

.dark {
  --site-bg:#0F0F0F;
  --header-bg:#202327;
  --text-color: oklch(87.2% 0.01 258.338);
  --text-color-bold: #e6e6e6;
  --card-bg-color: #202327;
  --border-color: #2a2a2a;
  --link-color: #60a5fa;       
  --link-hover: #93c5fd;
  --link-underline: rgba(96, 165, 250, 0.4);
  --teams-names: #e5e7eb;
  --live-bg: #dc4c4c;
  --hover-matches:#354055;
}
.
.story a {
  color: var(--link-color) !important;;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}

.story a:hover {
  color: var(--link-hover) !important;;
}

.story a:active {
  opacity: 0.8;
}
.text-color-bold {color: var(--text-color-bold);}
.card-bg-color {background: var(--card-bg-color);}
.live-bg {background: var(--live-bg);}
.live-text {color: var(--live-text);}
.header-bg {background: var(--header-bg);}
.hover-matches:hover {background: var(--hover-matches);}
.tab-btn:not(.tab-active):not(.tab-live-active):hover {
    background: var(--hover-matches);
}


.tab-active {
    background: #3d38f5;
    color: #fff;
    box-shadow: 0 2px 8px rgba(61,56,245,0.25);
}

.tab-live-active {
    background: #fe6161;
    color: #fff;
}



.eventpage-nav-btn {

    color: rgba(255,255,255,.92);

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,.08);

    text-shadow:
        0 1px 2px rgba(0,0,0,.35);

    overflow: hidden;
}

/* hover */
.eventpage-nav-btn:hover {

    background: rgba(255,255,255,.16);

    color: #fff;
}

/* dark */
.dark .eventpage-nav-btn {

    background: rgba(15,15,25,.45);

    border-color: rgba(255,255,255,.05);

    color: rgba(255,255,255,.88);
}

/* ACTIVE */
.eventpage-nav-btn.active {

    background: var(--site-bg);

    backdrop-filter: none;

    border-color: transparent;

    color: #171733;
}

.dark .eventpage-nav-btn.active {

    color: #fff;
}

/* underline */
.eventpage-nav-btn::after {

    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 78%;
    height: 3px;

    border-radius: 999px;

    background: #ff9f1c;

    opacity: 0;

    transition: .2s;
}

.eventpage-nav-btn.active::after {
    opacity: 1;
}
/* ==================================================
   EVENT PAGE NAV — MOBILE
================================================== */

@media (max-width: 767px) {

    .eventpage-nav-btn {
        position: relative;

        background: #ffffff;

        color: #171733;

        border: 1px solid rgba(23, 23, 51, 0.10);

        box-shadow:
            0 4px 12px rgba(15, 23, 42, 0.06);

        backdrop-filter: none;

        -webkit-backdrop-filter: none;

        text-shadow: none;

        overflow: hidden;
    }

    .eventpage-nav-btn svg {
        color: currentColor;
        opacity: 0.9;
    }

    .eventpage-nav-btn span {
        color: currentColor;
    }

    .eventpage-nav-btn:hover {
        background: #ffffff;

        color: #171733;
    }

    .eventpage-nav-btn.active {
        background: #ff8d00;

        color: #ffffff;

        border-color: rgba(255, 141, 0, 0.95);

        box-shadow:
            0 7px 18px rgba(255, 141, 0, 0.28);
    }

    .eventpage-nav-btn.active svg,
    .eventpage-nav-btn.active span {
        color: #ffffff;
        opacity: 1;
    }

    .eventpage-nav-btn::after {
        display: none;
    }

    /* DARK MOBILE */

    .dark .eventpage-nav-btn {
        background: #171733;

        color: rgba(255, 255, 255, 0.92);

        border-color: rgba(255, 255, 255, 0.10);

        box-shadow:
            0 4px 14px rgba(0, 0, 0, 0.20);
    }

    .dark .eventpage-nav-btn:hover {
        background: #20204a;

        color: #ffffff;
    }

    .dark .eventpage-nav-btn.active {
        background: #ff8d00;

        color: #ffffff;

        border-color: rgba(255, 141, 0, 0.95);

        box-shadow:
            0 7px 18px rgba(255, 141, 0, 0.30);
    }

    .dark .eventpage-nav-btn.active svg,
    .dark .eventpage-nav-btn.active span {
        color: #ffffff;
        opacity: 1;
    }
}
@media (min-width: 2500px) {
  .ultra-row {
    display: flex;
    flex-direction: row !important;
  }

  .ultra-row > div:not(:empty) {
    flex: 1;
  }
  .ultra-row > div:empty {
    display: none;
  }
}

.eventpage-nav-btn.active::after {
  opacity: 1;
}
.eventpage-bg.football {
  background: url("/public/images/bg_ft.webp") center / 100% 100% no-repeat;
}
.eventpage-bg.hockey {
  background: url("/public//images/bg_hc.webp")
              center / cover no-repeat;
}
.eventpage-bg.hc_wc {
  background: url("/public//images/hc_wc.webp")
              center / cover no-repeat;
}

.eventpage-bg.tennis {
  background: url("/public//images/bg_tennis_thr.webp")
              center / cover no-repeat;
}
.eventpage-bg.basketball {
  background:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("/public/images/bg_basket.webp") center / cover no-repeat;
}
.eventpage-bg.american-football {
  background: 
     linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_amball.webp")
              center / cover no-repeat;
}

.eventpage-bg.baseball {
  background: 
     linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_baseball.webp")
              center / cover no-repeat;
}
.eventpage-bg.handball {
  background: 
       linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_handball.webp")
              center / cover no-repeat;
}
.eventpage-bg.rugby-league,
.eventpage-bg.rugby {
  background: 
       linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_rugby.webp")
              center / cover no-repeat;
}
.eventpage-bg.floorball {
  background: 
       linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_floorball.webp")
              center / cover no-repeat;
}
.eventpage-bg.bandy {
  background: 
       linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_bandy.webp")
              center / cover no-repeat;
}
.eventpage-bg.futsal {
  background: 
       linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_futsal.webp")
              center / cover no-repeat;
}
.eventpage-bg.volleyball {
  background: 
       linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_volleyball.webp")
              center / cover no-repeat;
}
.eventpage-bg.cricket {
  background: 
       linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_cricket.webp")
              center / cover no-repeat;
}
.eventpage-bg.darts {
  background: 
  url("/public//images/bg_darts.webp")
              center / cover no-repeat;
}

.eventpage-bg.snooker {
  background: 
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_snooker.webp")
              center / cover no-repeat;
}
.eventpage-bg.beachvolleyball {
  background: 
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_beachvolleyball.webp")
              center / cover no-repeat;
}
.eventpage-bg.aussie-rules {
  background: 
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_aussie-rules.webp")
              center / cover no-repeat;
}
.eventpage-bg.badminton {
  background: 
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_badminton.webp")
              center / cover no-repeat;
}
.eventpage-bg.water-polo {
  background: 
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_water-polo.webp")
              center / cover no-repeat;
}
.eventpage-bg.field-hockey {
  background: 
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
  url("/public//images/bg_field-hockey.webp")
              center / cover no-repeat;
}
.eventpage-bg.table-tennis {
  background:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
    url("/public/images/bg_table-tennis2.webp")
      center bottom / cover no-repeat;
}
.eventpage-bg.beachsoccer {
  background:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
    url("/public/images/bg_beachsoccer.webp")
      center bottom / cover no-repeat;
}
.eventpage-bg.netball {
  background:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
    url("/public/images/bg_netball.webp")
      center bottom / cover no-repeat;
}
.eventpage-bg.pesapallo {
  background:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
    url("/public/images/bg_pesapallo2.webp")
      center bottom / cover no-repeat;
}
.eventpage-bg.esports {
  background:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
    url("/public/images/bg_esports.webp")
      center bottom / cover no-repeat;
}
.homepage-topmatches-list {
    display: none;
}
.homepage-topmatches-list.active {
    display: block;
}
.homepage-topmatches-option.active {
    background: rgba(255,255,255,0.1);
    font-weight: 600;
}
#sportSelect.open .dropdown {
    display: block;
}
.glass {
      backdrop-filter: blur(12px);
      background: rgba(23, 23, 51, 0.85);
}

section::-webkit-scrollbar {
  width: 6px;
}
section::-webkit-scrollbar-thumb {
  background: rgba(100,100,100,0.3);
  border-radius: 10px;
}
.teams-names {color: var(--teams-names); font-weight: 400; min-width: 0;}
.DLEPush {
	z-index: 2001;
	position: fixed;
	right: 20px;
	top: 20px
}
@keyframes DLEPush-show {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.DLEPush-notification.wrapper {
	animation-name: DLEPush-show;
	animation-duration: 1s;
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	color: #333;
	margin-bottom: 10px;
	width: 100%;
	max-width: 400px;
	box-shadow: 0 10px 15px rgb(0 0 0 / 20%);
	background-color: #fff;
	border-radius: 10px
}

.DLEPush-notification .DLEPush-icon {
	grid-column: 1;
	grid-row: 1 / span 2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 45px;
	height: 100%;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	text-align: center;
}

.DLEPush-notification .DLEPush-icon svg {
	scale: .8;
}

.DLEPush-notification .DLEPush-header {
	font-weight: 500;
	grid-column: 2;
	grid-row: 1;
	font-size: 1rem;
	margin-left: 1rem;
	margin-top: .5rem;
}
.DLEPush-notification .DLEPush-header:empty {
	margin-top: 0;
}

.DLEPush-notification .DLEPush-message {
	grid-column: 2;
	grid-row: 2;
	font-size: .875rem;
	margin: 1rem;
}

.DLEPush-notification .DLEPush-message li, .DLEPush-notification .DLEPush-message ul {
	list-style-type: none;
	padding-left: 0;
}

.DLEPush-notification .DLEPush-close {
	position: absolute;
	top: 8px;
	right: 10px;
	font-weight: 300;
	background: none;
	border: 0;
	font-size: 1.15rem;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	color: inherit;
	outline: 0;
	opacity: 0.75;
}

@media only screen and (min-width: 601px) {
	.DLEPush-notification.wrapper {
		min-width: 400px;
	}
}

.DLEPush-notification .DLEPush-close:hover {
	opacity: 1;
}

.DLEPush-notification.wrapper.push-success {
	background-color: #e0f2f1;
}

.DLEPush-notification.wrapper.push-success .DLEPush-icon {
	background-color: #00897b;
}

.DLEPush-notification.wrapper.push-warning {
	background-color: #FFF3E0;
}

.DLEPush-notification.wrapper.push-warning .DLEPush-icon {
	background-color: #FF9800;
}

.DLEPush-notification.wrapper.push-error {
	background-color: #FBE9E7;
}

.DLEPush-notification.wrapper.push-error .DLEPush-icon {
	background-color: #FF5722;
}