/*
Theme Name: Streams
Theme URI: https://example.com/topembed-schedule
Description: A custom theme for displaying live sports schedules and streams.
Version: 1.3.0
Author: Your Name
Author URI: https://example.com
*/

/* =========================================================
   01. ROOT & RESET
========================================================= */

:root {
    --bg-main: #080b12;
    --bg-card: #10151f;
    --bg-card-2: #121925;
    --bg-dark: #070a10;
    --bg-nav: #0d1119;

    --border: #202936;
    --border-light: #2b3645;

    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-soft: #cbd5e1;

    --accent: #3b82f6;
    --accent-hover: #60a5fa;
    --accent-purple: #8b5cf6;

    --live: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;

    --radius: 6px;
    --transition: 0.2s ease;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    background:
        radial-gradient(
            ellipse 900px 700px at 50% -10%,
            rgb(59 130 246 / 8%),
            transparent 65%
        ),
        var(--bg-main);

    color: var(--text-main);

    font-family:
        "Roboto Condensed",
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.55;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--accent-hover);
    text-decoration: none;
    transition:
        color var(--transition),
        opacity var(--transition);
}

a:hover {
    color: #93c5fd;
    text-decoration: none;
}

button,
select,
input {
    font-family: inherit;
}

h1,
h2,
h3,
.site-name {
    font-family:
        "Roboto Condensed",
        Arial,
        Helvetica,
        sans-serif;

    font-weight: 700;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

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

h3 {
    font-size: 21px;
}

p,
.p {
    font-family:
        "Roboto Condensed",
        Arial,
        Helvetica,
        sans-serif;

    font-weight: 400;
}


/* =========================================================
   02. 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;
}


/* =========================================================
   03. MAIN LAYOUT
========================================================= */

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    width: min(100%, 1400px);

    margin: 10px auto;
    padding: 0 5px;
}

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

.right-sidebar {
    display: flex;

    flex: 1;

    flex-direction: column;

    gap: 16px;

    min-width: 280px;

    margin-right: 2px;
    margin-left: 5px;
}

body.home .container {
    min-height: 500px;
}


/* =========================================================
   04. HEADER
========================================================= */

.main_header {
    position: sticky;

    top: 0;
    z-index: 9999;

    width: 100vw;
    max-width: none;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    padding: 8px 10px;

    background:
        linear-gradient(
            180deg,
            #111722 0%,
            #0a0e16 100%
        );

    border-bottom: 1px solid var(--border);

    box-shadow:
        0 4px 18px rgb(0 0 0 / 20%);
}

.main_header .logo-line {
    display: flex;

    align-items: center;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 7px 15px;
}

.main_header .logo-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--text-main);

    text-decoration: none;
}

.main_header .logo-img {
    display: block;

    width: 250px;
    height: 50px;

    object-fit: contain;
}

.main_header .site-name {
    display: none;

    color: var(--text-main);

    font-size: 24px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.3px;
}

.main_header .logo-link:hover .site-name {
    color: var(--accent-hover);
}


/* =========================================================
   05. MAIN SPORTS NAVIGATION
========================================================= */

.main-navigation {
    width: 100%;
}

.sports-nav {
    display: flex;

    flex-wrap: wrap;

    align-items: center;
    justify-content: flex-end;

    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
}

.sports-nav li {
    margin: 0;
    padding: 4px 7px;
}

.sports-nav li a {
    display: inline-block;

    color: #e5e7eb;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.2;

    text-transform: uppercase;

    white-space: nowrap;

    text-decoration: none;

    transition:
        color var(--transition),
        opacity var(--transition);
}

.sports-nav li a:hover {
    color: var(--accent-hover);
}


/* =========================================================
   06. TEAM LOGO NAVIGATION
========================================================= */

.team-lests-section {
    width: 100%;

    overflow: hidden;

    background: #0b1018;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.team-lests-scroll {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
}

.team-lests-scroll::-webkit-scrollbar {
    display: none;
}

.team-lest-list {
    display: flex;

    align-items: center;

    gap: 8px;

    width: max-content;
    min-width: 100%;

    margin: 0;

    padding: 7px 10px;

    list-style: none;
}

.team-lest {
    flex: 0 0 auto;

    margin: 0;
    padding: 0;
}

.team-lest a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    background: transparent;

    border-radius: 7px;

    text-decoration: none;

    transition:
        background var(--transition),
        transform var(--transition);
}

.team-lest a:hover {
    background: #151d29;

    transform: translateY(-2px);
}

.team-lest img {
    display: block;

    width: 44px;
    height: 44px;

    object-fit: contain;
}


/* =========================================================
   07. HOME CONTENT
========================================================= */

.home-main-content {
    margin-left: 0;

    padding: 6px;

    background:
        linear-gradient(
            180deg,
            #111722 0%,
            #0d121b 100%
        );

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 3px 12px rgb(0 0 0 / 18%);
}

.home-main-content h1 {
    margin-bottom: 12px;

    color: var(--text-main);

    font-size: 22px;
    line-height: 1.25;

    text-align: center;

    text-transform: uppercase;
}

.home-main-content p {
    margin: 18px 20px;

    color: var(--text-soft);

    font-size: 0.95rem;

    line-height: 1.65;
}


/* =========================================================
   08. SIDEBAR CONTENT
========================================================= */

.home-sidebar-content {
    padding: 6px;

    background:
        linear-gradient(
            180deg,
            #111722 0%,
            #0d121b 100%
        );

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 3px 12px rgb(0 0 0 / 18%);
}

.home-sidebar-content h2,
.home-sidebar-content h3 {
    color: var(--text-main);

    text-align: center;

    text-transform: uppercase;
}

.home-sidebar-content h2 {
    margin-bottom: 12px;

    font-size: 1.15rem;
}

.home-sidebar-content h3 {
    margin-bottom: 12px;

    font-size: 1rem;
}

.home-sidebar-content p {
    margin: 18px;

    color: var(--text-soft);

    font-size: 0.95rem;

    line-height: 1.6;
}

.home-sidebar-content ol {
    margin: 0;

    color: var(--text-soft);

    font-size: 0.95rem;

    line-height: 1.6;
}

.home-sidebar-content ol li {
    margin-bottom: 8px;

    color: var(--text-soft);

    font-size: 0.95rem;

    line-height: 1.5;
}

.home-sidebar-content ol li strong {
    color: var(--text-main);
}


/* =========================================================
   09. FAQ
========================================================= */

.faq-item {
    margin-bottom: 10px;

    padding: 5px 20px;
}

.faq-item h2,
.faq-item h3 {
    margin: 0 0 8px;

    color: #93c5fd;

    font-size: 14px;

    font-weight: 800;

    line-height: 1.35;

    text-align: left;
}

.faq-item p {
    margin: 0;

    color: #cbd5e1;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   10. SCHEDULE
========================================================= */

.NHL_schedule_container {
    width: 100%;

    background:
        linear-gradient(
            180deg,
            #111722 0%,
            #0b1018 100%
        );

    border-collapse: collapse;
}

.NFL_schedule_shot_code {
    margin-left: 0;
}

table {
    width: 100%;

    font-size: 15px;

    text-align: center;

    border: 0;

    border-radius: var(--radius);

    box-shadow:
        0 3px 8px rgb(0 0 0 / 35%);
}

table td,
table th {
    padding: 6px;

    vertical-align: middle;

    border: 1px solid var(--border);
}

table th {
    color: var(--text-main);

    font-weight: 700;

    background: #121925;
}

td.vs {
    padding: 5px;

    text-align: center;
}

td.vs .game_time,
td.vs .schedule_date,
td.vs .main_vs {
    display: block;

    margin: 2px 0;
}

td.vs .game_time {
    color: var(--text-main);

    font-size: 13px;

    font-weight: 800;

    text-transform: capitalize;
}

td.vs .schedule_date {
    color: var(--text-muted);

    font-size: 11px;

    font-weight: 400;

    text-transform: capitalize;
}

td.vs .main_vs {
    color: var(--accent-hover);

    font-size: 15px;

    font-weight: 900;
}

td.teamvs span {
    color: var(--text-main);

    font-size: 14px;

    font-weight: 800;

    text-transform: capitalize;
}

td.teamlogo img {
    display: block;

    width: 45px;
    height: 45px;

    margin: auto;

    object-fit: contain;

    vertical-align: middle;

    transition: transform 0.25s ease;
}

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

.game_time {
    font-size: 14px;

    font-weight: 700;

    text-align: center;
}

.game_date {
    font-size: 12px;

    font-weight: 700;

    text-align: center;
}

.game_day_date {
    padding-bottom: 10px;

    color: var(--text-main);
}

.schedule_shown_date {
    color: var(--text-muted);

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 0.5px;

    line-height: 1;
}

.schedule_date_heading {
    padding: 7px;

    background:
        linear-gradient(
            180deg,
            #131b27 0%,
            #0d131d 100%
        );

    border: 1px solid var(--border);

    border-radius: 10px 10px 0 0;

    color: var(--text-main);

    font-size: 12px;

    line-height: 1.55;

    text-align: center;
}

.season_title {
    margin: 0;

    padding: 10px;

    color: var(--text-main);

    font-size: 20px;
}

h1.team_schedule_heading {
    margin-bottom: 0;

    color: var(--text-main) !important;

    font-size: 18px;

    font-weight: 600;

    text-align: center;
}


/* =========================================================
   11. TIMEZONE
========================================================= */

.timezone-selector {
    position: relative;

    display: block;

    width: 100%;
}

.timezone-selector select {
    width: 100%;

    padding: 9px 40px 9px 14px;

    appearance: none;

    cursor: pointer;

    background: #111b27;

    border: 1px solid var(--border);

    border-radius: 5px;

    color: var(--text-main);

    font-size: 14px;

    font-weight: 500;

    text-transform: uppercase;
}

.timezone-selector select:focus {
    outline: none;

    border-color: var(--accent);

    box-shadow:
        0 0 0 2px rgb(59 130 246 / 12%);
}

.timezone-selector::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 16px;

    width: 7px;
    height: 7px;

    pointer-events: none;

    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);

    transform:
        translateY(-65%)
        rotate(45deg);
}


/* =========================================================
   12. WATCH / BACKUP / HD BUTTONS
========================================================= */

button.watch_btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;
}

.watch_btn,
.backup_btn {
    padding: 8px 10px;

    cursor: pointer;

    border-radius: var(--radius);

    font-size: 13px;

    font-weight: 800;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.watch_btn {
    background:
        linear-gradient(
            180deg,
            #2563eb 0%,
            #1d4ed8 100%
        );

    border: 1px solid #3b82f6;

    color: #fff;

    box-shadow:
        0 3px 8px rgb(37 99 235 / 20%);
}

.watch_btn:hover {
    background:
        linear-gradient(
            180deg,
            #3b82f6 0%,
            #2563eb 100%
        );

    color: #fff;

    transform: translateY(-1px);

    box-shadow:
        0 5px 14px rgb(37 99 235 / 30%);
}

.backup_btn {
    background: #151d29;

    border: 1px solid #334155;

    color: #cbd5e1;

    box-shadow: none;
}

.backup_btn:hover {
    background: #1d2938;

    border-color: #475569;

    color: #fff;

    transform: translateY(-1px);
}

.hd {
    width: 100%;

    padding: 7px 10px;

    cursor: pointer;

    background:
        linear-gradient(
            180deg,
            #1e40af 0%,
            #1d4ed8 100%
        );

    border: 1px solid #3b82f6;

    border-radius: var(--radius);

    color: #fff;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 3px 10px rgb(37 99 235 / 20%);

    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.hd:hover {
    background:
        linear-gradient(
            180deg,
            #2563eb 0%,
            #1e40af 100%
        );

    transform: translateY(-1px);

    box-shadow:
        0 5px 14px rgb(37 99 235 / 30%);
}

.hd-btn {
    background: #f59e0b;

    color: #111;

    font-weight: 800;
}


/* =========================================================
   13. PLAYER
========================================================= */

.player_area {
    display: none;

    margin-bottom: 25px;

    margin-left: 0;
}

.player_container {
    position: relative;

    height: 0;

    padding-top: 56.25%;

    background: #000;
}

.player_container iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 1px solid var(--border);

    background: #000;
}

.iframe-links {
    display: flex;

    width: 100%;

    margin-bottom: 0;

    background: #111925;

    border-top: 1px solid var(--border);

    text-align: center;
}

.theatre_btn {
    width: 100%;

    padding: 14px;

    background: #121a26;

    border: 0;

    border-right: 1px solid var(--border);

    border-radius: 0;

    color: #dbe4ee;

    font-size: 14px;

    font-weight: 700;

    transition:
        background var(--transition),
        color var(--transition);
}

.theatre_btn:hover,
.theatre_btn.active {
    background: #1b2635;

    color: #fff;
}


/* =========================================================
   14. CHAT
========================================================= */

#darkChat {
    display: none;

    height: 550px;

    background:
        linear-gradient(
            180deg,
            #111722 0%,
            #0b1018 100%
        );

    border: 1px solid var(--border);

    border-radius: var(--radius);
}


/* =========================================================
   15. PRICING
========================================================= */

.pricing {
    margin-top: 0;

    padding: 50px 30px;

    background:
        linear-gradient(
            135deg,
            #10151f 0%,
            #0d1724 50%,
            #0b1018 100%
        );

    border: 1px solid var(--border);

    border-radius: var(--radius);

    text-align: center;
}

.pricing .price1,
.pricing-box .price1 {
    margin-bottom: 10px;

    font-size: 20px;

    font-weight: 700;
}

.pricing .price,
.pricing-box .price {
    margin-bottom: 5px;

    color: #22c55e;

    font-size: 24px;
}

.pricing ul,
.pricing-box ul {
    padding: 0;

    list-style: none;

    color: var(--text-main);

    font-size: 14px;

    line-height: 2;
}

.pricing ul li {
    padding: 2px;

    border-bottom: 1px solid rgb(148 163 184 / 10%);

    color: var(--text-main);
}

.pricing .button a {
    display: inline-block;

    padding: 13px 28px;

    background:
        linear-gradient(
            180deg,
            #2563eb 0%,
            #1d4ed8 100%
        );

    border-radius: 5px;

    color: #fff;

    font-weight: 700;

    text-decoration: none;
}

.pricing .button a:hover {
    background: #3b82f6;
}

.pricing-box {
    margin-top: 10px;

    padding: 20px;

    background:
        linear-gradient(
            180deg,
            #111722 0%,
            #0c121b 100%
        );

    border: 1px solid var(--border);

    border-radius: var(--radius);

    text-align: center;
}

.pricing-box ul li {
    padding: 10px;

    border-bottom: 0;

    color: var(--text-main);
}

.pricing-box .button a {
    display: inline-block;

    padding: 13px 28px;

    background:
        linear-gradient(
            180deg,
            #3b82f6 0%,
            #2563eb 100%
        );

    border-radius: 5px;

    color: #fff;

    font-weight: 800;

    text-decoration: none;
}

.pricing-box .button a:hover {
    background: #60a5fa;
}

.price1 {
    padding: 10px;

    color: var(--text-main);

    font-size: 20px;

    font-weight: 600;

    text-transform: uppercase;
}


/* =========================================================
   16. NATIVE AD / BANNER
========================================================= */

.native {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 30%;

    margin: 10px auto -20px;

    padding: 10px;
}

.mini_banner_area {
    display: flex;

    align-items: center;

    margin-top: 20px;

    background:
        linear-gradient(
            180deg,
            #121d2a 0%,
            #0d151f 100%
        );

    border: 1px solid #2b4d68;

    color: var(--text-main);

    font-weight: 700;
}

.mini_banner {
    flex-basis: calc(100% - 95px);

    padding: 15px;

    color: #dbeafe;

    text-align: center;
}

.hd_image {
    flex-basis: 53px;

    padding: 20px 10px;

    background:
        linear-gradient(
            180deg,
            #2563eb 0%,
            #1d4ed8 100%
        );

    border-radius: 0 5px 5px 0;

    text-align: center;
}

.hd_image img {
    width: 30px;

    margin-bottom: -4px;
}

.minibanner_text {
    position: relative;

    display: inline-block;

    overflow: hidden;

    color: var(--text-main);

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    text-transform: uppercase;

    vertical-align: top;
}

.minibanner_text::before,
.minibanner_text::after {
    position: absolute;

    left: 0;

    width: 100%;

    content: "";

    transform-origin: 100% 50%;

    transition:
        transform 0.3s cubic-bezier(.76, 0, .24, 1);
}

.minibanner_text::before {
    bottom: 0;

    height: 1px;

    background-color: var(--accent);

    transform: scaleX(0);
}

.minibanner_text::after {
    top: 0;

    height: 100%;

    color: var(--accent-hover);

    content: attr(data-replace);

    transform: translate3d(200%, 0, 0);
}

.minibanner_text:hover::before {
    transform: scaleX(1);

    transform-origin: 0 50%;
}

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

.minibanner_text span {
    display: inline-block;

    transition:
        transform 0.3s cubic-bezier(.76, 0, .24, 1);
}

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


/* =========================================================
   17. SCHEDULE TOGGLE
========================================================= */

.schedule-toggle-buttons {
    display: flex;

    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    gap: 7px;

    width: 100%;

    margin: 15px auto;
}

.schedule-toggle-buttons button {
    appearance: none;

    padding: 9px 15px;

    background: #111722;

    border: 1px solid #293443;

    border-radius: var(--radius);

    color: var(--text-soft);

    font-family:
        "Roboto Condensed",
        Arial,
        sans-serif;

    font-size: 14px;

    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.schedule-toggle-buttons button:hover {
    background: #182130;

    border-color: var(--accent);

    color: #fff;
}

.schedule-toggle-buttons button.active {
    background:
        linear-gradient(
            180deg,
            #3b82f6 0%,
            #2563eb 100%
        );

    border-color: #3b82f6;

    color: #fff;

    box-shadow:
        0 3px 10px rgb(59 130 246 / 25%);
}

.schedule-toggle-buttons button.active:hover {
    filter: brightness(1.08);

    color: #fff;
}


/* =========================================================
   18. TOP NAVBAR
========================================================= */

.top_navbar {
    overflow-x: auto;

    padding: 6px 10px;

    background: var(--bg-nav);

    border-bottom: 1px solid var(--border);

    color: #e5e7eb;

    font-size: 14px;

    white-space: nowrap;
}


/* =========================================================
   19. CLEARFIX
========================================================= */

.clearfix::after,
.container-fluid::after,
.container::after,
.row::after {
    display: table;

    clear: both;

    content: "";
}


/* =========================================================
   20. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 992px) {

    .nav-teams {
        overflow: hidden;
    }

    a#toggleTeathre {
        display: none;
    }

    td.vs .game_time,
    td.vs .main_vs,
    td.vs .schedule_date {
        display: block;

        margin: 2px 0;

        font-size: 12px;
    }

    td.vs .main_vs {
        color: var(--accent-hover);

        font-size: 15px;

        font-weight: 700;
    }

    .sports-nav {
        padding-right: 5px;

        padding-left: 5px;
    }

    .sports-nav li {
        padding: 5px;
    }

    .sports-nav li a {
        font-size: 12px;
    }
}


/* =========================================================
   21. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 768px) {

    .container {
        flex-direction: column;

        gap: 6px;
    }

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

        margin-left: 5px;
    }

    .logo-line {
        width: 100%;
    }

    .main_header .logo-line {
        flex-direction: column;

        align-items: center;
    }

    .main_header .logo-img {
        width: 200px;

        height: 50px;
    }

    .sports-nav {
        justify-content: center;

        align-items: center;
    }

    .sports-nav li a {
        font-size: 13px;

        font-weight: 700;
    }

    .team-lest-list {
        gap: 6px;

        padding: 6px 8px;
    }

    .team-lest a {
        width: 46px;

        height: 46px;
    }

    .team-lest img {
        width: 38px;

        height: 38px;
    }

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

    .teamvs,
    .themvs {
        display: none;
    }

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

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

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

    table td,
    table th {
        color: var(--text-main);

        font-size: 12px;

        font-weight: 700;
    }

    td.vs {
        padding: 6px;
    }

    td.vs .game_time,
    td.vs .main_vs,
    td.vs .schedule_date {
        display: block;

        margin: 2px 0;

        font-weight: 700;
    }

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

    td.vs .main_vs {
        color: var(--accent-hover);

        font-size: 12px;
    }

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

    td.teamlogo img {
        width: 40px;

        height: 40px;
    }

    .watch_btn {
        width: 60px;

        height: 35px;

        font-size: 14px;
    }

    .hd {
        padding: 8px;

        font-size: 12px;

        white-space: nowrap;
    }

    .game_date {
        font-size: 10px;
    }

    .game_time {
        padding: 2px 5px;

        font-size: 11px;
    }

    .iframe-links a {
        padding: 10px;

        font-size: 14px;
    }

    .pricing-box {
        margin-top: 20px !important;

        margin-right: 0 !important;

        margin-left: 0 !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: 100%;

        margin: 10px auto;
    }

    .minibanner_text {
        font-size: 10px;
    }

    .sports_schedule_container li {
        flex-direction: column;

        align-items: flex-start;

        gap: 4px;

        padding: 15px;
    }

    .teamvs {
        width: 100%;

        margin-left: 15px;

        overflow: hidden;

        font-size: 14px;

        font-weight: 900;

        white-space: nowrap;

        text-overflow: ellipsis;
    }

    .watch_btn,
    .hd {
        padding: 8px;

        font-size: 12px;

        white-space: nowrap;
    }

    .watch_btn.bakup_btn {
        font-size: 11px;
    }

    .schedule-toggle-buttons {
        gap: 6px;
    }

    .schedule-toggle-buttons button {
        padding: 8px 11px;

        font-size: 13px;
    }
}


/* =========================================================
   22. FOOTER
========================================================= */

.site-footer {
    width: 100%;

    margin: 30px 0 0;

    padding: 0;

    background:
        linear-gradient(
            180deg,
            #0d121a 0%,
            #080b11 100%
        );

    color: var(--text-muted);

    border-top: 1px solid var(--border);

    box-sizing: border-box;
}

.site-footer__inner {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 25px 20px 20px;

    box-sizing: border-box;
}

.site-footer__disclaimer {
    width: 100%;

    margin: 0;

    padding: 0 0 20px;

    border-bottom: 1px solid var(--border);

    text-align: center;
}

.site-footer__disclaimer p {
    max-width: 1000px;

    margin: 0 auto;

    padding: 0;

    color: #8f9aaa;

    font-family:
        "Roboto Condensed",
        Arial,
        sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.7;

    text-align: center;
}

.site-footer__disclaimer strong {
    color: #e8edf3;

    font-weight: 700;
}

.site-footer__copyright {
    width: 100%;

    margin: 0;

    padding: 15px 0 0;

    text-align: center;
}

.site-footer__copyright p {
    margin: 0;

    padding: 0;

    color: #687384;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 11px;

    font-weight: 400;

    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   23. FOOTER MOBILE
========================================================= */

@media (max-width: 768px) {

    .site-footer {
        margin-top: 25px;
    }

    .site-footer__inner {
        padding: 21px 16px 18px;
    }

    .site-footer__disclaimer {
        padding-bottom: 17px;
    }

    .site-footer__disclaimer p {
        font-size: 12px;

        line-height: 1.65;
    }

    .site-footer__copyright {
        padding-top: 13px;
    }

    .site-footer__copyright p {
        font-size: 11px;

        line-height: 1.5;
    }
}


/* =========================================================
   24. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .site-footer {
        margin-top: 20px;
    }

    .site-footer__inner {
        padding: 19px 12px 15px;
    }

    .site-footer__disclaimer {
        padding-bottom: 14px;
    }

    .site-footer__disclaimer p {
        font-size: 11px;

        line-height: 1.65;
    }

    .site-footer__copyright {
        padding-top: 12px;
    }

    .site-footer__copyright p {
        font-size: 10px;

        line-height: 1.5;
    }
}