/*
Theme Name: NBA WEBCAST
Theme URI: https://nbawebcast.site/
Description: A custom theme for displaying live sports schedule and streams.
Version: 1.0
Author: Your Name
Author URI: https://nbawebcast.site/
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg-deep:       #1a1a1a;
  --bg-card:       #080f1e;
  --bg-dark:       #05091b;
  --border-color:  #323847;
  --border-subtle: #333333;
  --text-primary:  #ffffff;
  --text-muted:    #dbdbdb;
  --text-dim:      #cccccc;
  --accent-orange: #ff8204;
  --accent-gold:   #e4b75a;
  --accent-green:  #00cc99;
  --gradient-card: #1b2233;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-deep);
  font-family: 'Roboto', sans-serif;
  color: var(--text-primary);
}



a:-webkit-any-link {
  color: var(--text-primary);
  cursor: pointer;
  text-decoration: none;
}

a:-webkit-any-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

h2 {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

li {
  border-bottom: 0px solid rgba(74, 69, 69, 0.38);
  padding: 10px;
  color: var(--text-primary);
}

/* ============================================================
   HEADER
   ============================================================ */
.main_header {
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  max-width: 1400px;
  margin: auto;
  width: 100%;
}

.Second_header {
  background: var(--bg-dark);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo-line {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 35px;
  height: 35px;
  margin-right: 5px;
}

.logo-text {
  font-size: 25px;
  color: var(--text-primary);
  margin: 0;
}

.site-name {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-primary);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.left-content {
  flex: 2;
  min-width: 0;
}

.right-sidebar {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-right: 2px;
  margin-left: 5px;
}

/* ============================================================
   HOME CONTENT BOXES
   ============================================================ */
.home-main-content {
  background: #1e1e1e;
  padding: 5px;
  border-radius: 5px;
  margin-left: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-subtle);
}

.home-main-content h1 {
  font-size: 22px;
  color: var(--text-primary);
  text-transform: uppercase;
  text-align: center;
}

.home-main-content p {
  margin: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.home-sidebar-content {
  background: #1e1e1e;
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.01);
  border: 1px solid var(--border-subtle);
}

.home-sidebar-content h2,
.home-sidebar-content h5 {
  font-size: 1.2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.home-sidebar-content h3 {
  font-size: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

.home-sidebar-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 20px;
}

.home-sidebar-content ol {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.home-sidebar-content ol li {
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.home-sidebar-content ol li strong {
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* ============================================================
   TIMEZONE SELECTOR
   ============================================================ */
.timezone-selector {
  position: relative;
  display: block;
  width: 100%;
}

.timezone-selector select {
  background-color: #0c1e33;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  padding: 8px 20px;
  appearance: none;
  cursor: pointer;
  width: 100%;
}

.timezone-selector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-primary);
  font-size: 15px;
}

/* ============================================================
   SCORE STRIP
   ============================================================ */
.top_navbar {
  background: #121212;
  color: #eee;
  padding: 5px 10px;
  border-bottom: 1px solid #444;
  font-size: 14px;
  overflow-x: auto;
  white-space: nowrap;
}

.score_container {
  height: 74px;
}

.scorestrip {
  background: #1e1e1e;
}

.scorestrip .game-list {
  float: left;
  width: 100%;
}

.scorestrip .game-list .noGames {
  line-height: 88px;
  padding-left: 10px;
  display: block;
}

.scoreStripGames .item {
  color: #ccc;
  background: var(--gradient-card);
  padding: 4px 7px;
  position: relative;
  float: left;
  width: 95px;
  box-sizing: content-box;
  border-left: 1px solid #ccc;
}

.scoreStripGames .item.liveevent {
  padding: 0 0 3px;
  width: 150px;
}

.scoreStripGames .item.liveevent img {
  overflow: hidden;
  max-height: 150px;
}

.scoreStripGames .item.liveevent.redzone-liveevent img {
  max-height: 72px;
  width: auto;
}

.scoreStripGames .item.liveevent.redzone-liveevent {
  padding: 0;
}

.scoreStripGames .item .info      { font-size: 12px; }
.scoreStripGames .item .info-content { line-height: 22px; }

.scoreStripGames .item .logo {
  float: left;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.scoreStripGames .item .code {
  float: left;
  font-weight: 700;
}

.scoreStripGames .item .score {
  float: right;
  display: none;
}

/* Score visibility states */
.score-on .scoreStripGames .item .score,
.score-on .scoreStripGames .item.FINAL .status span.scoreOn,
.score-on .scoreStripGames .item.live .status span.scoreOn,
.score-on .scoreStripGames .item.unavailable .status span.scoreOn,
.score-on .scoreStripGames .item.upcoming .status span.scoreOn,
.scoreStripGames .item.FINAL .status span.scoreOff,
.scoreStripGames .item.live .status span.scoreOff,
.scoreStripGames .item.unavailable .status span.scoreOff,
.scoreStripGames .item.upcoming .status span.scoreOff {
  display: block;
}

.scoreStripGames .item .status {
  font-size: 10px;
  line-height: 20px;
  height: 20px;
  text-transform: uppercase;
}

.scoreStripGames .item.Live .status,
.scoreStripGames .item.Q1 .status,
.scoreStripGames .item.Q2 .status,
.scoreStripGames .item.Q3 .status,
.scoreStripGames .item.Q4 .status {
  color: #006400;
}

.scoreStripGames .item.FINAL .status,
.scoreStripGames .item.Final .status {
  color: #d50a0a;
}

.scoreStripGames .item.PREGAME .status,
.scoreStripGames .item.Pre-Game .status {
  color: #f26729;
}

.scoreStripGames .item.liveevent .status {
  padding: 0 7px;
}

.scoreStripGames .item .status .rz-text {
  color: #d50a0a;
  float: right;
  display: none;
}

.scoreStripGames .item.redzone .status .rz-text {
  display: inline-block;
}

/* Score strip bars */
.scoreStripGames .item .bar {
  border-top: 2px solid;
  bottom: 0;
  height: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: opacity 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955),
              transform 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  border-top-color: inherit;
}

.scoreStripGames .item .red-bar    { top: 0; border-color: #d50a0a; }
.scoreStripGames .item .orange-bar { top: 0; border-color: #ffcc00; }
.scoreStripGames .item .green-bar  { top: 0; border-color: #5ea92a; }
.scoreStripGames .item .blue-bar   { bottom: 0; border-color: #1b48e0; }

.scoreStripGames .item.preSelected,
.scoreStripGames .item.selected {
  background: #fff;
  cursor: default;
}

.scoreStripGames .item.unavailable {
  cursor: no-drop;
}

/* Watch hover overlay */
a.stickytickerwatch,
a.tickerwatch {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 2px;
  right: 0;
  background: var(--gradient-card);
  color: var(--text-primary);
  text-align: center;
  padding-top: 26px;
  opacity: 0;
  font-size: 13px;
  font-weight: 700;
  transition: opacity 0.2s, visibility 0.2s;
}

.item:hover a.stickytickerwatch,
.item:hover a.tickerwatch {
  opacity: 1;
}

span.teams_logo img {
  width: 35px;
  vertical-align: middle;
}

/* ============================================================
   OWL CAROUSEL
   ============================================================ */
.owl-carousel {
  cursor: pointer;
}

.owl-carousel .owl-stage {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: box;
  margin: 0 auto;
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 0;
  width: 55px;
  height: 8%;
  background-color: #19294c;
  background-position: center center;
  background-size: 12px 20px;
  background-repeat: no-repeat;
  transition: opacity 0.2s, visibility 0.2s;
  opacity: 1;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.12);
}

.owl-carousel .owl-nav .owl-prev {
  left: 0;
  background-image: url(https://neulionms-a.akamaihd.net/nfl/gamepass/v1/nflgp/site_4/images/icon_arraw_left_gray.svg);
  padding-right: 0;

}

.owl-carousel .owl-nav .owl-next {
  right: 0;
  background-image: url(https://neulionms-a.akamaihd.net/nfl/gamepass/v1/nflgp/site_4/images/icon_arraw_right_gray.svg);
  padding-left: 0;

}

.owl-carousel .owl-nav .disabled {
  visibility: hidden;
  opacity: 0;
}

/* Clearfix */
.clearfix::after,
.clearfix::before,
.container-fluid::after,
.container-fluid::before,
.container::after,
.container::before,
.row::after,
.row::before {
  display: table;
  content: " ";
}

.clearfix::after,
.container-fluid::after,
.container::after,
.row::after {
  clear: both;
}

/* ============================================================
   SCHEDULE TABLE
   ============================================================ */
.NBA_schedule_container {
  width: 100%;
  border-collapse: collapse;
  background:#05091b;
}

table {
  font-size: 15px;
  text-align: center !important;
  border: 0;
  border-radius: 5px;
}

table td,
table th {
  padding: 6px;
  vertical-align: middle;
  border: 1px solid var(--border-color);
}

td.vs {
  text-align: center;
  padding: 5px;
}

td.vs .game_time {
  display: block;
  margin: 2px 0;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 900;
  text-transform: capitalize;
}

td.vs .schedule_date {
  display: block;
  margin: 2px 0;
  font-size: 11px;
  color: var(--text-primary);
  font-weight: 100;
  text-transform: capitalize;
}

td.vs .main_vs {
  font-weight: 900;
  color: var(--accent-orange);
  font-size: 15px;
  display: block;
}

td.teamvs span {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 900;
  text-transform: capitalize;
}

td.teamlogo img {
  width: 45px;
  height: 45px;
  transition: transform 0.3s ease-in-out;
  vertical-align: middle;
}

td.teamlogo:hover img {
  transform: scale(1.2);
}

.game_time {
  text-align: center;
  font-weight: 700;
  border-radius: 0;
  font-size: 14px;
}

.game_date {
  font-size: 12px;
  text-align: center;
  font-weight: 700;
}

.game_day_date {
  color: var(--text-primary);
  padding-bottom: 10px;
}

.schedule_date_heading {
  text-align: center;
  background: #2c2c2c;
  border-radius: 15px 15px 0 0;
  color: var(--text-primary);
  font-size: 12px;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  border-color: var(--border-subtle);
}

.season_title {
  font-size: 20px;
  color: var(--text-primary);
  margin: 0;
  padding: 10px;
}

h1.team_schedule_heading {
  color: #000 !important;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
button.watch_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.watch_btn {
  background: linear-gradient(90deg, #d7d8da 0%, #ffffff 50%, #d7d8da 100%);
  color: #000;
  font-size: 15px;
  font-weight: 900;
  border-radius: 5px;
  padding: 8px 10px;
  cursor: pointer;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
  transition: 0.25s;
}

.watch_btn:hover {
  background: linear-gradient(90deg, #d7d8da 10%, #ffffff 100%, #d7d8da 50%);
  color: #000;
  filter: brightness(1.15);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.55);
}

.hd {
  background: linear-gradient(90deg, #c8a043 0%, #ffe899 50%, #c8a043 100%);
  border: none;
  color: #000;
  width: 100%;
  font-size: 15px;
  font-weight: 900;
  border-radius: 5px;
  padding: 7px 10px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  transition: 0.25s;
}

.hd:hover {
  filter: brightness(1.15);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.55);
}

/* ============================================================
   PLAYER AREA
   ============================================================ */
.player_area {
  display: none;
  margin-bottom: 30px;
  margin-left: 0;
}

.player_container {
  position: relative;
  padding-top: 56.25%;
  height: 0;
}

.player_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #525252;
}

.iframe-links {
  width: 100.3%;
  display: flex;
  background: var(--gradient-card);
  text-align: center;
  margin-bottom: 0;
}

.theatre_btn {
  border-right: 1px solid #525252;
  color: var(--text-primary);
  padding: 15px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  border-radius: 0;
  transition: 0.3s;
  width: 20.2%;
}

.theatre_btn.active {
  background: #014a01;
}

.theatre_btn:hover {
  background: #710202;
}

.hd-btn {
  background: gold;
  color: black;
  font-weight: bold;
}

/* ============================================================
   PRICING BOX
   ============================================================ */
.pricing {
  background: var(--gradient-card);
  padding: 60px;
  margin-top: 0;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #525252;
}

.pricing.price1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.pricing .price {
  font-size: 24px;
  color: var(--accent-green);
  margin-bottom: 5px;
}

.pricing ul {
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 2;
  color: var(--text-primary);
}

.pricing .button a {
  display: inline-block;
  padding: 15px 30px;
  background: var(--gradient-card);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 4px;
}

.pricing .button a:hover {
  background: linear-gradient(to right, #111, #205c87, #0b0b0b, #000);
  text-decoration: underline;
}

.price1 {
  padding: 10px;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Hidden pricing box */
.pricing-box {
  display: none;
  background: var(--gradient-card);
  padding: 20px;
  margin-top: 10px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #525252;
}

.pricing-box .price1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.pricing-box .price {
  font-size: 24px;
  color: var(--accent-green);
  margin-bottom: 5px;
}

.pricing-box ul {
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 2;
  color: var(--text-primary);
}

.pricing-box .button a {
  display: inline-block;
  padding: 15px 30px;
  background: var(--gradient-card);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 4px;
}

.pricing-box .button a:hover {
  background: linear-gradient(to right, #111, #205c87, #0b0b0b, #000);
  text-decoration: underline;
}

/* ============================================================
   DARK CHAT
   ============================================================ */
#darkChat {
  display: none;
  background: var(--gradient-card);
  height: 550px;
  border-radius: 5px;
  border: 1px solid #525252;
}

/* ============================================================
   MINI BANNER
   ============================================================ */
.mini_banner_area {
  margin-top: 20px;
  display: flex;
  align-items: center;
  border: 1px solid #9a9a9a;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  font-weight: 700;
}

.mini_banner {
  text-align: center;
  flex-basis: calc(100% - 95px);
  padding: 15px;
}

.hd_image {
  flex-basis: 53px;
  background: #ff0000;
  padding: 20px 10px;
  text-align: center;
  border-radius: 0 5px 5px 0;
}

.hd_image img {
  width: 30px;
  margin-bottom: -4px;
  filter: brightness(0);
}

.minibanner_text {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  font-weight: 700;
  vertical-align: top;
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 15px;
}

.minibanner_text::before,
.minibanner_text::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transform-origin: 100% 50%;
}

.minibanner_text::before {
  background-color: var(--theme_color);
  height: 1px;
  bottom: 0;
  transform: scaleX(0);
}

.minibanner_text::after {
  content: attr(data-replace);
  top: 0;
  height: 100%;
  transform: translate3d(200%, 0, 0);
  color: var(--theme_color);
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.minibanner_text:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.minibanner_text:hover::after {
  transform: translate3d(0, 0, 0);
}

.minibanner_text span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}

.minibanner_text:hover span {
  transform: translate3d(-200%, 0, 0);
}

/* ============================================================
   NATIVE / AD AREA
   ============================================================ */
.native {
  justify-content: center;
  align-items: center;
  width: 30%;
  margin: 10px auto -20px;
  padding: 10px;
  box-sizing: border-box;
}

/* ============================================================
   NFL SCHEDULE
   ============================================================ */
.NBA_schedule_shot_code {
  margin-left: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.main_footer {
  background: var(--bg-card);
  color: var(--text-primary);
  border-top: 2px solid var(--border-color);
  padding-top: 10px;
}

.footer_container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
}

.footer_left h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.footer_left p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  text-align: center;
}

.footer_links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer_links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer_links a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.footer_social {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-top: -12px;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   RESPONSIVE â€” TABLET (max-width: 992px)
   ============================================================ */
@media (max-width: 992px) {
  .nav-teams {
    overflow: hidden;
  }

  a#toggleTeathre {
    display: none;
  }

  td.vs .main_vs {
    color: #dd0000;
  }

  td.vs .game_time,
  td.vs .main_vs,
  td.vs .schedule_date {
    display: block;
    margin: 2px 0;
    font-size: 12px;
  }

  td.vs .main_vs {
    font-weight: 700;
    font-size: 15px;
  }
}

/* ============================================================
   RESPONSIVE â€” MOBILE (max-width: 768px)
   ============================================================ */
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .NHL_schedule_shot_code {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .left-content {
    margin-left: 5px;
    margin-right: 5px;
  }

  .teamvs span {
    font-size: 12px;
  }

  .vs .game_time,
  .vs .schedule_date {
    font-size: 10px;
  }

  .vs .main_vs {
    font-size: 13px;
  }

  .teamlogo img {
    height: 30px;
  }

  table td,
  table th {
    font-size: 12px;
    color: #FFF9E5;
    font-weight: 700;
  }

  .teamvs,
  .themvs {
    display: none;
  }

  td.vs {
    text-align: center;
    padding: 2px;
  }

  td.vs .game_time {
    display: block;
    margin: 2px 0;
    font-size: 11px;
  }

  td.vs .main_vs {
    font-weight: 700;
    font-size: 13px;
  }

  td.vs .schedule_date {
    display: block;
    margin: 2px 0;
    font-size: 9px;
  }

  td.teamlogo img {
    width: 40px;
    height: 40px;
  }

  .watch_btn {
    width: 60px;
    height: 35px;
    font-size: 14px;
  }

  .schedule_hd {
    width: 50px;
    height: 35px;
    font-size: 14px;
  }

  .game_date {
    font-size: 10px;
    text-align: center;
    font-weight: 700;
  }

  .game_time {
    text-align: center;
    font-weight: 700;
    border-radius: 0;
    font-size: 11px;
  }

  td.vs {
    padding: 6px;
  }

  td.vs .game_time,
  td.vs .main_vs,
  td.vs .schedule_date {
    font-size: 10px;
    font-weight: 700;
  }

  td.vs .main_vs {
    font-size: 12px;
    font-weight: 700;
  }

  td.vs .schedule_date {
    font-size: 8px;
    font-weight: 700;
  }

  .iframe-links {
    width: 100.5%;
  }

  .iframe-links a {
    padding: 10px;
    font-size: 14px;
  }

  .theatre_btn {
    padding: 10px;
    font-size: 11px;
    width: 11%;
  }

  .pricing-box {
    margin-top: 100px;
    margin-left: 0 !important;
    margin-right: 3px !important;
  }

  .pricing-box .price {
    font-size: 20px;
  }

  .pricing-box .price1 {
    font-size: 18px;
  }

  .pricing-box ul {
    font-size: 13px;
  }

  #darkChat {
    display: none !important;
  }

  .native {
    width: 50%;
    margin: -20px auto -25px;
  }

  .player_area {
    margin-left: 0;
    margin-right: 3px;
  }

  .minibanner_text {
    font-size: 10px;
  }

  .main_header {
    overflow: scroll;
  }

  .owl-carousel .owl-nav {
    display: none;
  }

  .sports_schedule_container li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 4px;
  }

  .sports_schedule_container li::before {
    content: counter(gameno) ".";
    position: absolute;
    left: 10px;
    font-size: 15px;
    font-weight: 900;
  }

  .teamvs {
    width: 100%;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 15px;
  }

  .second_line {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .game_time {
    font-size: 11px;
    padding: 2px 5px;
  }

  .watch_btn,
  .hd {
    font-size: 12px;
    padding: 8px;
    white-space: nowrap;
  }
}