/*
Theme Name: Robong
Description: WordPress theme for Robong sports streaming website
Version: 1.0.0
Author: Robong Team
Text Domain: robong
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    ;
    background-color: #121215;
    color: #fff;
    line-height: 1.6;
}

a {
    color: #e2fe35;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: #ffd86c;
    text-decoration: none;
}

/* WordPress Admin Bar Compatibility */
.admin-bar #app {
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar #app {
        margin-top: 46px;
    }
}

/* Container and Layout */
.container {
    width: 100%;
    max-width: min(90vw, 1958px);
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

/* Rich content block shared across informational templates */
.content-article-wrapper {
    padding-top: 3rem;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, rgba(8, 8, 12, 0) 0%, rgba(8, 8, 12, 0.85) 45%, rgba(8, 8, 12, 1) 100%);
}

.content-article-card {
    position: relative;
    border-radius: 28px;
    padding: 2.75rem;
    background: rgba(18, 18, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(5, 5, 12, 0.55);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-article-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(90, 168, 255, 0.35), rgba(226, 254, 53, 0.15));
    z-index: 0;
    filter: blur(18px);
    opacity: 0.7;
}

.content-article-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(226, 254, 53, 0.08), transparent 55%);
    z-index: 0;
}

.content-article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(5, 5, 12, 0.65);
}

.content-article-card__inner {
    position: relative;
    z-index: 1;
    background: rgba(8, 8, 12, 0.88);
    border-radius: 22px;
    padding: 2rem;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-article-card__inner> :first-child {
    margin-top: 0;
}

.content-article-card__inner> :last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .content-article-card {
        padding: 2rem;
        border-radius: 22px;
    }

    .content-article-card__inner {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .content-article-card {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .content-article-card__inner {
        padding: 1.25rem;
        border-radius: 16px;
    }
}

.content-article-body {
    position: relative;
    max-height: var(--content-collapse-height, clamp(420px, 50vh, 640px));
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.content-article-body[data-collapsed="false"] {
    max-height: none;
}

.content-article-body[data-collapsed="true"]::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 140px;
    background: linear-gradient(180deg, rgba(11, 11, 16, 0) 0%, rgba(11, 11, 16, 0.95) 70%);
    pointer-events: none;
}

.content-article-toggle {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(226, 254, 53, 0.5);
    background: rgba(226, 254, 53, 0.1);
    color: #faffc2;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.content-article-toggle:hover,
.content-article-toggle:focus-visible {
    background: rgba(226, 254, 53, 0.2);
    color: #fff;
    border-color: rgba(226, 254, 53, 0.8);
}

.content-article-toggle:focus {
    outline: none;
}

.content-article-toggle__icon {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 999px;
    position: relative;
    border: 1px solid currentColor;
    transition: transform 0.3s ease;
}

.content-article-toggle__icon::before {
    content: "";
    position: absolute;
    inset: 0.25rem;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transform-origin: center;
}

.content-article-toggle[aria-expanded="true"] .content-article-toggle__icon {
    transform: rotate(180deg);
}

.content-article-card--no-toggle .content-article-toggle {
    display: none;
}

/* Header Styles */
header {
    background-color: rgba(18, 18, 21, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* margin-left sáº½ Ä‘Æ°á»£c Ä‘iá»u chá»‰nh bá»Ÿi media queries */
}

.header-elements {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    gap: 2rem;
}

#logo img {
    height: 40px;
    width: auto;
}


.top-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Menu Items */
.top-menu .menu-item {
    position: relative;
    list-style: none;
}

.top-menu .menu-item .menu-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    font-weight: 600;
}

.top-menu .menu-item .menu-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #e2fe35;
}

/* Dropdown Arrow for Menu Items with Children */
.top-menu .menu-item-has-children>.menu-link::after {
    /* content: "â–¼"; */
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.top-menu .menu-item-has-children:hover>.menu-link::after {
    transform: rotate(180deg);
}

/* Submenu Styles */
.top-menu .sub-menu {
    position: absolute;
    /* display: inline-block !important; */
    top: 100%;
    left: 0;
    background-color: rgba(18, 18, 21, 0.3);
    backdrop-filter: blur(10px);
    min-width: 160px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

/* Show submenu on hover */
.top-menu .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu Items */
.top-menu .sub-menu .menu-item {
    position: relative;
    list-style: none;
    align-items: center !important;
    justify-content: space-between !important;
}

.top-menu .sub-menu .menu-item .menu-link {
    padding: 0.75rem 1rem;
    border-radius: 0;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.top-menu .sub-menu .menu-item .menu-link:hover {
    background-color: rgba(226, 254, 53, 0.1);
    color: #e2fe35;
    padding-left: 0.8rem;
}


/* Submenu Icons */
.top-menu .sub-menu .menu-item .menu-link::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}


/* Multi-level dropdown support */
.top-menu .sub-menu .menu-item-has-children>.menu-link::after {
    content: "â–º";
    margin-left: auto;
    font-size: 0.7rem;
}

.top-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 0.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-items {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(18, 18, 21, 0.95);
    z-index: 100002;
    overflow-y: auto;
    padding: 2rem;
}

/* Hiá»ƒn thá»‹ khi cÃ³ class active */
.mobile-menu-items.active {
    display: block;
}

/* Optional: Animation */
.mobile-menu-items {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-items.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    /* padding: 0.5rem; */
}

.menu-icon-image {
    border-radius: 5px;
    width: 33px;
    height: 33px;
    /* object-fit: contain; */
}

.icon-menu {
    border-radius: 10px;
    padding: 0.4rem 0.6rem;
    border: 2px solid #333;
}

.icon-menu span {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.icon-menu span:nth-child(1) {
    width: 20px;
}

.icon-menu span:nth-child(2) {
    width: 15px;
}

.icon-menu span:nth-child(3) {
    width: 20px;
}

/* Top Navbar - káº¿ thá»«a tá»« .base-column */
#top_navbar {
    /* Additional styles náº¿u cáº§n */
    overflow-y: auto;
}

.sc-logo {
    opacity: 0.3;
}

.nav_clock {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    top: 0;
    left: clamp(10px, 5vw, 20px);
}

.nav_clock .icon-align {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* padding: 0.5rem 1rem; */
}

.nav_clock .icon-align .time {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.nav_clock .icon-align .date {
    font-size: 0.7rem;
    color: #030303;
    background-color: #e2fe35;
    padding: 0.1rem 0.5rem;
    border-radius: 5px;
}

.navbar_container {
    width: 100%;
    margin: 0;
    padding: 0;
    /* Sáº½ Ä‘Æ°á»£c override bá»Ÿi media queries khi cáº§n */
}

.inc-icon.icon-14 img {
    width: 30px;
    height: 30px !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.nav_menu {
    display: flex;
    /* flex-direction sáº½ Ä‘Æ°á»£c Ä‘iá»u chá»‰nh bá»Ÿi media queries */
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

.nav_menu .nav_clock {
    position: relative;
    gap: 0.5rem;
    transform: translateX(-4px);

}

.nav_menu .item {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    padding: 1rem 0.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    height: 100px;
    text-align: center;
    /* height sáº½ Ä‘Æ°á»£c Ä‘iá»u chá»‰nh bá»Ÿi media queries */
    background-color: rgba(255, 255, 255, 0.03);
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
}

.nav_menu .item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(226, 254, 53, 0.3);
}

.nav_menu .item.item-live {
    background-color: rgba(226, 254, 53, 0.1);
    border-color: rgba(226, 254, 53, 0.3);
    color: #e2fe35;
}

.nav_menu .item.item-live:hover {
    background-color: rgba(226, 254, 53, 0.2);
    color: #e2fe35;
    transform: translateX(8px);
}

@media (max-width: 1024px) {
    .menu-header #top_navbar {
        position: relative !important;
        top: 0;
    }

    .base-column.flex-grow-1.nav_elements {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        left: 0 !important;
        padding: 0 16px !important;
    }

    .base-column.nav_menu {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0.5rem 0;
        gap: 0.5rem;
        background: transparent;
    }

    .base-column.nav_menu>a,
    .base-column.nav_menu .item {
        flex: 0 0 auto;
        width: auto;
        height: auto;
        padding: 0.5rem;
        margin-right: 0;
        justify-content: center;
    }

    .base-column.nav_menu .icon-align {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .base-column.nav_menu .menu-icon-image {
        width: 33px;
        height: 33px;
        border-radius: 5px;
        object-fit: contain;
    }

    .nav_clock {
        display: none;
    }
}

/* Main Content Wrapper */
#wrapper {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
    /* margin-left sáº½ Ä‘Æ°á»£c Ä‘iá»u chá»‰nh bá»Ÿi media queries */
}

/* Top Slide Section */
#top_slide {
    margin-bottom: 3rem;
    /* XÃ“A background gradient che lÃªn slide_container */
    border-radius: 2rem;
    overflow: hidden;

}

.slide_container {
    /* display: flex;
    align-items: center;
    min-height: 450px;
    padding: 0 5rem;
    gap: 3rem;
    position: relative;
    overflow: hidden; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.background_slide_container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5rem;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: linear-gradient(360deg, rgba(50, 53, 104, 0.73) 0%, #323568 87%);
}

/* Inline styles tá»« admin sáº½ override CSS nÃ y */

/* Priority cho admin customizer backgrounds */
#top_slide .slide_container[style] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: rgba(255, 255, 255, 0.4);
    /* XÃ“A background-blend-mode overlay */
}

.slide_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Background Ä‘Æ°á»£c set trá»±c tiáº¿p lÃªn .slide_container, ::before khÃ´ng cáº§n ná»¯a */
    z-index: -1;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.4);
}

.content {
    flex: 1;
    max-width: 600px;
}

.sc-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.sc-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.description {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.7;
}

/* Sports Categories */
.sports {
    display: flex;
    flex-wrap: nowrap;
    flex: 1;
    position: relative;
    z-index: 1;
    justify-content: flex-end;
    align-items: stretch;
    width: 100%;
    /* padding-right: 2rem; */
}

.sport-item {
    position: relative;
    height: 308px;
    min-width: 200px;
    flex: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    transform: rotate(5deg);
    background-position: center center !important;
    background-size: cover !important;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    /* column-gap: -2rem; */
}

.sport-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.sport-item:nth-child(even):hover {
    transform: scale(1.05);
}

.sport-item .mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat !important;
    background-blend-mode: overlay;
    background-color: rgba(105, 96, 179, 0.5);
    opacity: 0.2;
    transition: all 0.3s ease;
    z-index: -1;
}

.sport-item:hover .mask {
    opacity: 1;
}

.sport-item .object {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding-top: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 100%;
}

.sport-item .object img {
    width: 100%;
    height: 100%;
    padding-top: 2rem;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transform: scale(1.3);
    /* Thay tháº¿ zoom */
    transition: transform 0.3s ease;
}

.sport-name {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    width: 100%;
    padding: 1rem 0;
    text-align: center;
}

.sport-name .name {
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
}

/* Layout Fluid */
#layout_fluid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

#primary_column {
    flex: 1;
}

#secondary_column {
    flex: 1;
    max-width: 400px;
    min-width: 300px;
}

/* Content Sections */
.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem 0;
}

.heading-xl {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.box-content {
    background-color: rgba(255, 254, 254, 0.1);
    border-radius: 10px;
    border: 0.5px solid rgba(255, 254, 254, 0.3);
    box-shadow: 0 0 8px 2px rgba(255, 254, 254, 0.2) inset;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
}

.box-content:hover {
    border: 0.5px solid rgba(255, 254, 254, 1);
    box-shadow: 0 0 8px 2px rgba(255, 254, 254, 0.4) inset;

}

.box-content .event-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6px;
}

.box-content .event-list .icon-event-list {
    color: #e2fe35;
    font-size: 1rem;
    padding: 10px;
}

.box-content .event-list.text-event-list {
    color: #ffffff;
    font-size: 1rem;
    padding: 10px;
}

.more {
    color: #e2fe35;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.more:hover {
    color: #fff;
}

.genre-row {
    margin-bottom: 1rem;
    /* background-color: rgba(255, 255, 255, 0.02); */
    border-radius: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Loading States */
.rloading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #ccc;
    gap: 1rem;
}

.r-icon {
    font-size: 2rem;
    color: #e2fe35;
    animation: pulse 2s infinite;
}

.matches-container {
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.matches-container.loading {
    pointer-events: none;
}

.matches-container.loading::before,
.matches-container.loading::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.matches-container.loading::before {
    inset: 0;
    background: rgba(2, 5, 20, 0.35);
    backdrop-filter: blur(2px);
    border-radius: 16px;
    z-index: 2;
}

.matches-container.loading::after {
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    margin: -21px 0 0 -21px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.25);
    border-top-color: #e2fe35;
    animation: robong-spinner 0.8s linear infinite;
    z-index: 3;
}

.matches-container.refresh-enter {
    animation: robong-refresh-in 0.45s ease-out;
}

#hot-matches .matches-container.loading::before,
#hot-matches .matches-container.loading::after {
    display: none;
}

#hot-matches .matches-container.refresh-enter {
    animation: none;
    opacity: 1;
    transform: none;
}

.sports-navigation.loading {
    opacity: 0.85;
    pointer-events: none;
    position: relative;
}

.sports-navigation.loading::after {
    content: 'Äang táº£i...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
}

@keyframes robong-spinner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes robong-refresh-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-matches,
.error {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Secondary Column */


#home-toggle-chat {
    width: 100%;
    background-color: rgba(226, 254, 53, 0.1);
    border: 2px solid rgba(226, 254, 53, 0.3);
    color: #fff;
    padding: 1rem;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

#home-toggle-chat:hover {
    background-color: rgba(226, 254, 53, 0.2);
    border-color: #e2fe35;
    color: #e2fe35;
}

/* Footer Styles */
footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    /* margin-left sáº½ Ä‘Æ°á»£c Ä‘iá»u chá»‰nh bá»Ÿi media queries */
}

.footer-elements {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: space-between;
    background: #000000;
    padding: 64px;
    border-radius: 30px;



    position: relative;
    min-height: 400px;
    padding: 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #000;
    border-radius: 1.5rem 1.5rem 0 0;
}

.side-left {
    flex: 2;
    max-width: 750px;
}

.side-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    max-width: 400px;
}

.sl-brand {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.socials {
    display: flex;
    gap: 1rem;
}

.social-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-item:hover {
    background-color: #0000;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(226, 254, 53, 0.5);
}

.sl-about {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sl-about a {
    text-decoration: none;
    color: #ffffff;
}

.sl-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.sl-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.sl-menu a:hover {
    color: #e2fe35;
}

.sl-copyright {
    color: #999;
    font-size: 0.8rem;
}

.sr-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sr-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    border-radius: 2rem;
    border: 1px solid #fff3;
    padding: .5rem 1rem;
    font-size: .9em;
    font-weight: 300;
}

.sr-links a:hover {
    color: #e2fe35;
}

/* Navigation Icons */
.xicon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.xicon-live {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="3"/><path d="M12 1v6M12 17v6M4.22 4.22l4.24 4.24M15.54 15.54l4.24 4.24M1 12h6M17 12h6M4.22 19.78l4.24-4.24M15.54 8.46l4.24-4.24"/></svg>');
}

.xicon-football {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="M12 2l3.09 6.26L22 9.27l-5 4.87L18.18 22 12 18.77 5.82 22 7 14.14l-5-4.87 6.91-1.01L12 2z"/></svg>');
}

.xicon-basketball {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="M12 2a10 10 0 0 0 0 20M12 2a10 10 0 0 1 0 20M2 12h20"/></svg>');
}

.xicon-volleyball {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="M12 2v20M2 12h20M6 6l12 12M18 6L6 18"/></svg>');
}

.xicon-tennis {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><ellipse cx="12" cy="12" rx="6" ry="10" fill="none" stroke="currentColor"/><ellipse cx="12" cy="12" rx="10" ry="6" fill="none" stroke="currentColor"/></svg>');
}

/* .xicon-shadow - ÄÃ£ táº¯t Ä‘á»ƒ trÃ¡nh lá»—i hiá»ƒn thá»‹ drop-shadow */

.icon-align {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onair {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #ff4444;
    border-radius: 50%;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {

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

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Active states for navigation */
.nav_menu .item.item-live {
    color: #e2fe35;
}

.nav_menu .item:hover .xicon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(60deg);
}

.nav_menu .item.item-live:hover .xicon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(60deg);
}

.flex-grow-1 {
    flex-grow: 1;
}

/* ÄÆ°á»ng gáº¡ch ngang giá»¯a cÃ¡c tráº­n Ä‘áº¥u */
.match-list .ml-item:not(:last-child) {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.item {
    border: 0px !important;
}

.line-center {
    display: flex;
    align-items: center;
}

.line-center.gap-2.teams {
    padding: 10px;
    background-color: #FFFFFF11;
    border-radius: 10px;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.text-primary {
    color: #e2fe35;
}

.w-100-layout {
    width: 100%;
    padding-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.m-0 {
    margin: 0;
}

.d-none {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-rounded {
    border-radius: 2rem;
}

.btn-bet {
    background: linear-gradient(45deg, #e2fe35, #a8c807);
    color: #000;
    font-weight: 500;
    height: 43px;
    animation: flash 2s infinite;
}

.shoutbox.home-shoutbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background: #000000;
    width: 100%;
    min-height: 560px;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
}

.home-shoutbox .chat-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 16px;
    min-height: 0;
}

.home-shoutbox .chat-messages {
    flex: 1;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 6px;
    scroll-behavior: smooth;
}

.home-shoutbox .chat-messages::-webkit-scrollbar {
    width: 6px;
}

.home-shoutbox .chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.home-shoutbox .chat-messages::-webkit-scrollbar-thumb {
    background: rgba(226, 254, 53, 0.4);
    border-radius: 999px;
}

.home-shoutbox .chat-identity {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-shoutbox .chat-identity .identity-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: #e2fe35;
}

.home-shoutbox .chat-identity .identity-header p {
    margin: 0;
    color: #dddddd;
    font-size: 0.9rem;
    font-weight: 400;
}

.home-shoutbox .chat-identity .identity-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.home-shoutbox .chat-display-name {
    flex: 1;
    min-width: 200px;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.home-shoutbox .chat-display-name::placeholder {
    color: #888;
}

.home-shoutbox .save-display-name {
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 600;
    background: #e2fe35;
    color: #000;
    cursor: pointer;
    transition: background 0.2s ease;
}

.home-shoutbox .save-display-name:hover {
    background: #d4f025;
}

.home-shoutbox .guest-name-status {
    font-size: 0.85rem;
    color: #999;
}

.home-shoutbox .chat-input-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}

.home-shoutbox .chat-input-wrapper {
    flex: 1;
    position: relative;
}

.home-shoutbox .chat-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: .4rem;
    color: #fff;
    font-size: 14px;
}

.home-shoutbox .chat-input:focus {
    border-color: #e2fe35;
    outline: none;
}

.home-shoutbox .char-count {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #666;
}

.home-shoutbox .send-button {
    padding: 0.75rem 1.5rem;
    background: #e2fe35;
    color: #000;
    border: none;
    border-radius: .4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-shoutbox .send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.home-shoutbox .login-prompt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    color: #ccc;
    font-size: 14px;
}

@media (max-width: 768px) {
    .home-shoutbox .chat-container {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .home-shoutbox .chat-container>* {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .home-shoutbox .chat-container::-webkit-scrollbar {
        display: none;
    }

    .home-shoutbox .chat-messages {
        max-height: 55vh;
    }
}

.btn.btn-light.w-100 {
    display: none;
}

.line-center.text-light {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.line-center.text-light i {
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.line-center.text-light span {
    font-size: 0.9rem;
}

.user-avarta {
    width: 40px;
    height: 40px;
}

.user-avarta img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.chat-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.chat-row.d-flex.gap-3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.head.w-100.line-center.gap-3 {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.user-name.line-center.gr-free {
    font-weight: 400;
    color: #ffffff;
    font-size: 0.8rem;
}

.time-chat {
    font-size: 0.8rem;
    color: #666666;
}

.info .subject {
    display: inline-block;
    font-size: 0.8rem;
    color: #adadad;
}

.sb_bottom .is_top {
    display: flex;
    flex-direction: row;
    /* Quan trá»ng: sáº¯p xáº¿p ngang */
    gap: 8px;
    align-items: stretch;
}

/* Chat Box Styling */
.sb_bottom {
    background: #000000;
}

.is_top {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.is_top-input {
    flex: 1;
    /* Chiáº¿m háº¿t khÃ´ng gian cÃ²n láº¡i */
    position: relative;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    /* Sáº¯p xáº¿p icon, input, counter theo ngang */
    align-items: center;
    gap: 8px;
    min-height: 50px;
}

.emo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.emo-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.2s;
}

.emo-btn:hover {
    color: #007bff;
}

.chat-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    min-height: 20px;
}

.chat-input::placeholder {
    color: #adb5bd;
}

.text-left {
    flex-shrink: 0;
    font-size: 8px;
    color: #6c757d;
    margin-left: auto;
}

.is_top-button {
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
}

.is_top-button .btn {
    background: #28a745;
    color: white;
    border: none;
    border-radius: 18px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
    /* KhÃ´ng cho text xuá»‘ng dÃ²ng */
    min-height: 40px;
    /* CÃ¹ng chiá»u cao vá»›i input */
    display: flex;
    align-items: center;
    justify-content: center;
}

.is_top-button .btn:enabled:hover {
    background: #218838;
}

.is_top-button .btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.is_bottom {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.is_bottom-login.line-center i {
    color: #6c757d;
}

.is_bottom-login {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6c757d;
    justify-content: center;
    flex-wrap: nowrap;
}

.is_bottom-login i {
    color: #007bff;
}

.is_bottom-login u {
    text-decoration: under;
    cursor: pointer;
    transition: color 0.2s;
    font-weight: bold;
}

.is_bottom-login u:hover {
    color: #0056b3;
}

.sb_bottom .form-control {
    border: none;
    box-shadow: none;
    background: transparent;
}

.sb_bottom .btn-block {
    width: auto;
    /* Override btn-block Ä‘á»ƒ khÃ´ng chiáº¿m full width */
}

/* Responsive */
@media (max-width: 768px) {
    .is_top {
        padding: 10px;
        gap: 6px;
    }

    .is_top-input {
        padding: 6px 10px;
        border-radius: 16px;
    }

    .is_top-button .btn {
        padding: 6px 16px;
        border-radius: 14px;
        font-size: 13px;
    }

    .is_bottom {
        padding: 8px 10px;
    }

    .is_bottom-login {
        font-size: 12px;
    }
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.base-column.item.item-generic {
    width: 100%;
    display: inline-block;
}

.base-column.item.item-generic span {
    font-size: 0.85rem;
}

.base-column.flex-grow-1.nav_elements {
    display: flex;
    left: clamp(50px, 5vw, 150px);
    width: clamp(100px, 20vw, 120px);
    position: fixed;
    top: 0;
    height: 10vh;
    border-radius: 0 1rem 1rem 0;
    padding: 1rem 0.5rem;
    border-left: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

/* ADDITIONAL: Äáº£m báº£o navigation hiá»ƒn thá»‹ sau header */
#top_navbar {
    position: relative;
    width: 100%;
    background-color: rgba(18, 18, 21, 0.95);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    z-index: 999;
}

/* FIX: Äáº£m báº£o banner khÃ´ng che navigation */
#top_slide {
    position: relative;
    z-index: 1;
    margin-top: 0;
}

/* Desktop ráº¥t lá»›n - menu dá»c bÃªn trÃ¡i */
@media screen and (min-width: 2271px) {
    .container {
        max-width: 1958px;
        margin: 0 auto;
        padding-left: 15px;
        transition: all 0.3s ease;
    }

    .base-column.flex-grow-1.nav_elements {
        display: flex;
        width: 120px;
        position: fixed;
        left: 0;
        top: 0;
        height: 150vh;
        border-radius: 0 1rem 1rem 0;
        padding: 1rem 0.5rem;
        border-left: none;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    header,
    #wrapper,
    footer {
        margin-left: 100px;
    }

    .nav_menu {
        flex-direction: column;
        gap: 1rem;
    }

    .xicon {
        width: 28px;
        height: 28px;
    }

    .nav_menu .item span {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 2270px) and (min-width: 2245px) {
    .container {
        max-width: 1958px;
        margin: 0 auto;
        padding-left: 15px;
        transition: all 0.3s ease;
    }

    .base-column.flex-grow-1.nav_elements {
        display: flex;
        left: clamp(-20px, 5vw, -5px);
        width: 120px;
        position: fixed;
        top: 0;
        height: 150vh;
        border-radius: 0 1rem 1rem 0;
        padding: 1rem 0.5rem;
        border-left: none;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    header,
    #wrapper,
    footer {
        margin-left: 100px;
    }

    .nav_menu {
        flex-direction: column;
        gap: 1rem;
    }

    .xicon {
        width: 28px;
        height: 28px;
    }

    .nav_menu .item span {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 2245px) and (min-width: 2200px) {
    .container {
        max-width: 1958px;
        margin: 0 auto;
        padding-left: 15px;
        transition: all 0.3s ease;
    }

    .base-column.flex-grow-1.nav_elements {
        display: flex;
        left: clamp(-40px, 2vw, -30px);
        width: 120px;
        position: fixed;
        top: 0;
        height: 150vh;
        border-radius: 0 1rem 1rem 0;
        padding: 1rem 0.5rem;
        border-left: none;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    header,
    #wrapper,
    footer {
        margin-left: 100px;
    }

    .nav_menu {
        flex-direction: column;
        gap: 1rem;
    }

    .xicon {
        width: 28px;
        height: 28px;
    }

    .nav_menu .item span {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 2200px) and (min-width: 2150px) {
    .container {
        max-width: 1958px;
        margin: 0 auto;
        padding: 0 32px;
        transition: all 0.3s ease;
    }

    .base-column.flex-grow-1.nav_elements {
        display: flex;
        left: clamp(-100px, 2vw, -60px);
        width: 120px;
        position: fixed;
        top: 0;
        height: 150vh;
        border-radius: 0 1rem 1rem 0;
        padding: 1rem 0.5rem;
        border-left: none;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    header,
    #wrapper,
    footer {
        margin-left: 100px;
    }

    .nav_menu {
        flex-direction: column;
        gap: 1rem;
    }

    .xicon {
        width: 28px;
        height: 28px;
    }

    .nav_menu .item span {
        font-size: 0.8rem;
    }
}

/* Desktop lá»›n - Menu dá»c */
@media screen and (max-width: 2150px) and (min-width: 2050px) {
    .container {
        max-width: 1900px;
        margin: 0 auto;
        padding-left: 15px;
        transition: all 0.3s ease;
    }

    .sport-item {
        flex: 1;
        /* Chia Ä‘á»u 5 items */
        min-width: 0;
        /* Cho phÃ©p shrink */
        height: 250px;
        /* Chiá»u cao cá»‘ Ä‘á»‹nh */
        max-width: none;
        /* Bá» giá»›i háº¡n width */
    }

    /* .sport-item .object img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transform: scale(1.3);
        transition: transform 0.3s ease;
    } */


    .base-column.flex-grow-1.nav_elements {
        display: flex;
        left: clamp(-100px, 2vw, -60px);
        width: 120px;
        position: fixed;
        top: 0;
        height: 150vh;
        border-radius: 0 1rem 1rem 0;
        padding: 1rem 0.5rem;
        border-left: none;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    header,
    #wrapper,
    footer {
        margin-left: 100px;
    }

    .nav_menu {
        flex-direction: column;
        gap: 1rem;
    }

    .xicon {
        width: 28px;
        height: 28px;
    }

    .nav_menu .item span {
        font-size: 0.8rem;
    }

}

.content-page {
    background: #12121b;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    margin-bottom: 32px;

}
.content-page.type-post {
    max-width: 100%;
}


.content-page .title-page {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    color: #b0b4c2;
    font-size: 14px;
}

.article-meta .meta-item a {
    color: #e2fe35;
}

.article-featured {
    margin: 20px 0 30px;
    border-radius: 16px;
    overflow: hidden;
}

.article-featured img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.page-default-wrapper {
    padding: 60px 0;
}

.page-default {
    background: #0c0c15;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.45);
    margin: 0 auto;
}

.page-default-header {
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
}

.page-default-title {
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.page-default-content {
    color: #d6d7e5;
    line-height: 1.8;
}

.page-default-content h2,
.page-default-content h3 {
    color: #e2fe35;
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-default-content p {
    margin-bottom: 18px;
}

.page-default-content ul {
    margin-left: 20px;
    margin-bottom: 18px;
}

.page-default-content li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .page-default {
        padding: 24px;
    }

    .page-default-title {
        font-size: 26px;
    }
}

.single-post-layout {
    display: flex;
    gap: 24px;
}

.single-post-main {
    flex: 0 0 calc(100% - 460px);
    min-width: 0;
}

.single-post-sidebar {
    flex: 0 0 460px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.sidebar-box {
    background: #0c0c15;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
}

.sidebar-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.latest-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.latest-posts-list li {
    display: flex;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
}

.latest-posts-list li:last-child {
    border-bottom: none;
}

.lp-thumb {
    flex: 0 0 72px;
    height: 72px;
    border-radius: 15px;
    overflow: hidden;
}

.lp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-info {
    flex: 1;
}

.latest-posts-list a {
    color: #fff;
    font-weight: 600;
    display: block;
}

.lp-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .single-post-layout {
        flex-direction: column;
    }

    .single-post-sidebar,
    .single-post-main {
        position: static;
        width: 100%;
        flex: 1 1 auto;
    }
}

.home-article-section {
    padding: 48px 0;
    background: #08080e;
}

.home-article-section article {
    max-width: 100%;
}

.home-article-block {
    background: #12121b;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    margin-bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.home-article-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-height: 500px;
    overflow: hidden;
    position: relative;
}


.home-article-wrapper.is-collapsed {
    max-height: 100%;
    overflow: hidden;
    position: relative;

}

.home-article-content .article-content {
    color: #d6d7e5;
    line-height: 1.7;
    font-size: 14px !important;

}

.home-article-content img,
.article-content img {
    max-width: 100%;
    border-radius: 16px;
    margin: 16px 0;
}

.home-article-content h2,
.article-content h2 {
    color: #e2fe35;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 1.4em
}

.home-article-content h3,
.article-content h3 {
    color: #ef82e3;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: .5rem !important;
}

.home-article-content p,
.article-content p {
    margin-bottom: 1em;
}





.home-article-toggle {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    width: 100%;

}

.home-article-content {
    max-width: calc(70% - 20px);
    background: #0f0f18;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-article-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(0deg, #08080e 0%, rgba(8, 8, 14, 0) 100%);
}

.home-article-toggle button {
    background: #e2fe35;
    color: #0c0c12;
    border: none;
    border-radius: 999px;
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-article-toggle button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(226, 254, 53, 0.25);
}

.table-of-contents {
    background: #0f0f18;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.table-of-contents.home-article-toc {
    width: calc(30% - 24px);
}

.toc-title {
    font-size: 18px;
    margin-bottom: 16px;
}

.toc-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #e2fe35;
}

.toc-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.toc-item {
    margin-bottom: 8px;
}

.toc-h2 {
    margin-left: 12px;
}

.toc-h3 {
    margin-left: 24px;
}

.toc-h4 {
    margin-left: 36px;
}

.toc-h5 {
    margin-left: 48px;
}

.toc-h6 {
    margin-left: 60px;
}

.toc-item a {
    color: #cdd0df;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
}

.toc-item .toc-number {
    font-weight: 600;
    color: #e2fe35;
}

.toc-link.active {
    color: #fff;
}



@media (max-width: 768px) {
    .content-page {
        padding: 20px;
    }

    .article-featured {
        margin-bottom: 20px;
    }
}

/* Homepage News Dark */
.home-news-dark {
    padding: 48px 0;
    background: #0c0c12;
}

.home-news-dark__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.home-news-dark__header h3 {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-news-dark__more {
    color: #e2fe35;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.home-news-dark__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 1200px) {
    .home-news-dark__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .home-news-dark__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .home-news-dark__grid {
        grid-template-columns: 1fr;
    }
}

.home-news-dark__card {
    background: #15151f;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-news-dark__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.home-news-dark__thumb {
    display: block;
    overflow: hidden;
    height: 160px;
}

.home-news-dark__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-news-dark__card:hover .home-news-dark__thumb img {
    transform: scale(1.05);
}

.home-news-dark__body {
    padding: 18px;
}

.home-news-dark__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #b0b4c2;
    margin-bottom: 10px;
}

.home-news-dark__meta .cat {
    color: #e2fe35;
}

.home-news-dark__meta .dot {
    width: 5px;
    height: 5px;
    background: #4e5060;
    border-radius: 50%;
}

.home-news-dark__title {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
}

.home-news-dark__title a {
    color: #fff;
}

@media (max-width: 768px) {
    .home-news-dark__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-news-dark__thumb {
        height: 200px;
    }
}

.blog-archive-header {
    flex-wrap: wrap;
}

.blog-archive-description {
    margin-top: 8px;
    font-size: 15px;
    color: #b0b4c2;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.blog-categories .cat-link {
    padding: 8px 16px;
    border-radius: 999px;
    background: #1d1d2b;
    color: #cdd0df;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-categories .cat-link:hover,
.blog-categories .cat-link.active {
    background: #e2fe35;
    color: #0c0c12;
    text-decoration: none;
}

.blog-pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.blog-pagination .page-numbers {
    margin: 0 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #1d1d2b;
    color: #cdd0df;
    font-weight: 600;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: #e2fe35;
    color: #0c0c12;
}

.blog-empty {
    text-align: center;
    color: #b0b4c2;
    padding: 40px 0;
    font-size: 16px;
}

/* Desktop nhá» - menu ngang */
@media screen and (max-width: 2050px) and (min-width: 1850px) {
    .container {
        max-width: 1858px;
        transition: all 0.3s ease;
        padding: 0 32px !important;
    }

    #top_slide {
        border-radius: 1.5rem;
    }

    .background_slide_container {
        width: 100%;
        height: 100%;
        transition: all 0.3s ease;
    }

    .sport-item {
        flex: 1;
        /* Chia Ä‘á»u 5 items */
        min-width: 0;
        /* Cho phÃ©p shrink */
        height: 250px;
        /* Chiá»u cao cá»‘ Ä‘á»‹nh */
        max-width: none;
        /* Bá» giá»›i háº¡n width */
    }

    .sport-item .object img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Giá»¯ tá»· lá»‡, náº±m khÃ­t trong khung */
        object-position: center;
        /* CÄƒn giá»¯a */
        transform: scale(1.3);
        /* Thu nhá» 80% - tÃ¹y chá»‰nh tÃ¹y Ã½ */
        transition: transform 0.3s ease;
    }

    /* Hover effect */
    .sport-item:hover .object img {
        transform: scale(1.3);
        /* PhÃ³ng to khi hover */
    }

    #top_navbar {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* FIX: Äáº£m báº£o base-column hiá»ƒn thá»‹ Ä‘Ãºng vá»‹ trÃ­ */
    .base-column {
        position: static !important;
        /* Thay relative thÃ nh static */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin-top: 0;
        /* Reset margin-top */
        height: auto;
        /* Thay 5vh thÃ nh auto */
        min-height: 60px;
        /* Äáº£m báº£o cÃ³ chiá»u cao tá»‘i thiá»ƒu */
        z-index: 1001;
        /* Äáº£m báº£o hiá»ƒn thá»‹ trÃªn banner */
    }

    .base-column.flex-grow-1.nav_elements {
        width: 100%;
        height: auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .nav_clock {
        display: none !important;
    }

    /* FIX: Navigation wrapper container */
    .navbar_container {
        width: 100%;
        max-width: 1858px;
        /* Match container width */
        margin: 0 auto;
        padding: 0 32px !important;
        /* Fixed padding */
        background-color: rgba(18, 18, 21, 0.95);
        /* Äáº£m báº£o cÃ³ background */
        position: relative;
        /* Äáº£m báº£o hiá»ƒn thá»‹ */
        z-index: 1002;
        /* Higher z-index */
        display: flex;
        align-items: center;
        justify-content: flex-start;

    }

    /* Fix cho nav_menu container */
    .base-column.nav_menu {
        position: relative !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        /* Equal distribution */
        width: auto;
        margin: 0;
        /* Reset margin */
        min-height: 60px;
        padding: 15px 0;
        /* Vertical padding */
        background-color: transparent;
        z-index: 1003;
        padding: 0 !important;
        zoom: 0.9;
        transition: all 0.3s ease;
    }

    /* Fix cho cÃ¡c link trong nav_menu */
    .base-column.nav_menu>a,
    .base-column.nav_menu .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        /* Equal distribution */
        padding: 0 !important;
        /* Remove padding */
        margin-right: 20px !important;
        /* Remove margin */
        text-align: center;
    }

    /* Äáº£m báº£o item-generic hiá»ƒn thá»‹ Ä‘Ãºng */
    .base-column.item.item-generic {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        width: auto !important;
        height: auto !important;
        flex: 1;
        /* Equal flex distribution */
        text-align: center;
        background-color: transparent;
    }

    /* Äáº£m báº£o header vÃ  content khÃ´ng bá»‹ overlap */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        margin-left: 0;
    }

    #wrapper {
        margin-left: 0;
        margin-top: 0;
        /* Äáº£m báº£o khÃ´ng bá»‹ overlap vá»›i navigation */
    }

    footer {
        margin-left: 0;
    }


    .nav_menu .item:hover {
        transform: translateY(-2px);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav_menu .item.item-live:hover {
        transform: translateY(-2px);
        background-color: rgba(226, 254, 53, 0.1);
    }

    .xicon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .nav_menu .item span {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}

@media screen and (max-width: 1849px) and (min-width: 1600px) {
    .container {
        max-width: 1858px;
        transition: all 0.3s ease;
        padding: 0 32px !important;
    }

    .top-menu {
        gap: 1rem;
    }

    .background_slide_container {
        width: 100%;
        height: 100%;
        padding: 2.5rem;
        transition: all 0.3s ease;
    }

    #top_slide {
        border-radius: 1.5rem;
    }

    .content {
        flex: 1;
        max-width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* CÄƒn giá»¯a ná»™i dung theo chiá»u dá»c */
        align-items: flex-start;
        /* CÄƒn trÃ¡i */
        height: 100%;
        /* Chiáº¿m full height */
    }

    .sc-logo img {
        width: 200px;
        height: auto;
        margin-bottom: 2rem;
    }

    .sc-heading {
        font-size: 1.9rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        /* XÃ³a margin */
    }

    /* FIX: Sports section */
    .sports {
        flex: 0 0 50%;
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        /* CÄƒn giá»¯a theo chiá»u dá»c */
        height: 100%;
        /* Chiáº¿m full height */
    }

    .slide_container {
        height: clamp(400px, 15vw, 500px);
        transition: all 0.3s ease;
        border-radius: 5px !important;
    }

    .background_slide_container {
        width: 100%;
        height: 100%;
        display: flex !important;
        /* Äáº£m báº£o flexbox */
        align-items: center !important;
        /* CÄƒn giá»¯a theo chiá»u dá»c */
        justify-content: space-between;
        /* PhÃ¢n bá»‘ Ä‘á»u */
    }

    .sport-item {
        flex: 1;
        /* Chia Ä‘á»u 5 items */
        min-width: 0;
        /* Cho phÃ©p shrink */
        height: 235px;
        /* Chiá»u cao cá»‘ Ä‘á»‹nh */
        max-width: none;
        /* Bá» giá»›i háº¡n width */
    }

    .sport-item .object img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Giá»¯ tá»· lá»‡, náº±m khÃ­t trong khung */
        object-position: center;
        /* CÄƒn giá»¯a */
        transform: scale(1.3);
        /* Thu nhá» 80% - tÃ¹y chá»‰nh tÃ¹y Ã½ */
        transition: transform 0.3s ease;
    }

    /* Hover effect */
    .sport-item:hover .object img {
        transform: scale(1.4);
        /* PhÃ³ng to khi hover */
    }

    #top_navbar {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* FIX: Äáº£m báº£o base-column hiá»ƒn thá»‹ Ä‘Ãºng vá»‹ trÃ­ */
    .base-column {
        position: static !important;
        /* Thay relative thÃ nh static */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin-top: 0;
        /* Reset margin-top */
        height: auto;
        /* Thay 5vh thÃ nh auto */
        min-height: 60px;
        /* Äáº£m báº£o cÃ³ chiá»u cao tá»‘i thiá»ƒu */
        z-index: 1001;
        /* Äáº£m báº£o hiá»ƒn thá»‹ trÃªn banner */
    }

    .base-column.flex-grow-1.nav_elements {
        width: 100%;
        height: auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .nav_clock {
        display: none !important;
    }

    /* FIX: Navigation wrapper container */
    .navbar_container {
        width: 100%;
        max-width: 1858px;
        /* Match container width */
        margin: 0 auto;
        padding: 0 32px !important;
        /* Fixed padding */
        background-color: rgba(18, 18, 21, 0.95);
        /* Äáº£m báº£o cÃ³ background */
        position: relative;
        /* Äáº£m báº£o hiá»ƒn thá»‹ */
        z-index: 1002;
        /* Higher z-index */
        display: flex;
        align-items: center;
        justify-content: flex-start;

    }

    /* Fix cho nav_menu container */
    .base-column.nav_menu {
        position: relative !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        /* Equal distribution */
        width: auto;
        margin: 0;
        /* Reset margin */
        min-height: 60px;
        padding: 15px 0;
        /* Vertical padding */
        background-color: transparent;
        z-index: 1003;
        padding: 0 !important;
        zoom: 0.9;
        transition: all 0.3s ease;
    }

    /* Fix cho cÃ¡c link trong nav_menu */
    .base-column.nav_menu>a,
    .base-column.nav_menu .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        /* Equal distribution */
        padding: 0 !important;
        /* Remove padding */
        margin-right: 20px !important;
        /* Remove margin */
        text-align: center;
    }

    /* Äáº£m báº£o item-generic hiá»ƒn thá»‹ Ä‘Ãºng */
    .base-column.item.item-generic {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        width: auto !important;
        height: auto !important;
        flex: 1;
        /* Equal flex distribution */
        text-align: center;
        background-color: transparent;
    }

    /* Äáº£m báº£o header vÃ  content khÃ´ng bá»‹ overlap */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        margin-left: 0;
    }

    #wrapper {
        margin-left: 0;
        margin-top: 0;
        /* Äáº£m báº£o khÃ´ng bá»‹ overlap vá»›i navigation */
    }

    footer {
        margin-left: 0;
    }


    .nav_menu .item:hover {
        transform: translateY(-2px);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav_menu .item.item-live:hover {
        transform: translateY(-2px);
        background-color: rgba(226, 254, 53, 0.1);
    }

    .xicon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .nav_menu .item span {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 1599px) and (min-width: 1285px) {
    .container {
        max-width: 1600px;
        transition: all 0.3s ease;
        padding: 0 32px !important;
    }

    .top-menu {
        gap: 0.5rem;
        font-size: 0.8rem;
        transition: all 0.3s ease;
    }

    .slide_container {
        height: clamp(350px, 20vw, 400px);
        transition: all 0.3s ease;
    }

    .background_slide_container {
        width: 100%;
        height: 100%;
        padding: 2.5rem;
        transition: all 0.3s ease;
    }

    #top_slide {
        border-radius: 1.5rem;
    }

    .item-event-sport {
        display: none;
        transition: all 0.3s ease;
    }

    .content {
        flex: 1;
        max-width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* CÄƒn giá»¯a ná»™i dung theo chiá»u dá»c */
        align-items: flex-start;
        /* CÄƒn trÃ¡i */
        height: 100%;
        /* Chiáº¿m full height */
    }

    .sc-logo img {
        width: 200px;
        height: auto;
        margin-bottom: 2rem;
    }

    .sc-heading {
        font-size: 1.9rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        /* XÃ³a margin */
    }

    /* FIX: Sports section */
    .sports {
        flex: 0 0 50%;
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        /* CÄƒn giá»¯a theo chiá»u dá»c */
        height: 100%;
        /* Chiáº¿m full height */
    }

    .slide_container {
        height: clamp(400px, 15vw, 500px);
        transition: all 0.3s ease;
        border-radius: 5px !important;
    }

    .background_slide_container {
        width: 100%;
        height: 100%;
        display: flex !important;
        /* Äáº£m báº£o flexbox */
        align-items: center !important;
        /* CÄƒn giá»¯a theo chiá»u dá»c */
        justify-content: space-between;
        /* PhÃ¢n bá»‘ Ä‘á»u */
    }

    .sport-item {
        flex: 1;
        /* Chia Ä‘á»u 5 items */
        min-width: 0;
        /* Cho phÃ©p shrink */
        height: 235px;
        /* Chiá»u cao cá»‘ Ä‘á»‹nh */
        max-width: none;
        /* Bá» giá»›i háº¡n width */
    }

    #top_navbar {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* FIX: Äáº£m báº£o base-column hiá»ƒn thá»‹ Ä‘Ãºng vá»‹ trÃ­ */
    .base-column {
        position: static !important;
        /* Thay relative thÃ nh static */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin-top: 0;
        /* Reset margin-top */
        height: auto;
        /* Thay 5vh thÃ nh auto */
        min-height: 60px;
        /* Äáº£m báº£o cÃ³ chiá»u cao tá»‘i thiá»ƒu */
        z-index: 1001;
        /* Äáº£m báº£o hiá»ƒn thá»‹ trÃªn banner */
    }

    .base-column.flex-grow-1.nav_elements {
        width: 100%;
        height: auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .nav_clock {
        display: none !important;
    }

    /* FIX: Navigation wrapper container */
    .navbar_container {
        width: 100%;
        max-width: 1858px;
        /* Match container width */
        margin: 0 auto;
        padding: 0 32px !important;
        /* Fixed padding */
        background-color: rgba(18, 18, 21, 0.95);
        /* Äáº£m báº£o cÃ³ background */
        position: relative;
        /* Äáº£m báº£o hiá»ƒn thá»‹ */
        z-index: 1002;
        /* Higher z-index */
        display: flex;
        align-items: center;
        justify-content: flex-start;

    }

    /* Fix cho nav_menu container */
    .base-column.nav_menu {
        position: relative !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        /* Equal distribution */
        width: auto;
        margin: 0;
        /* Reset margin */
        min-height: 60px;
        padding: 15px 0;
        /* Vertical padding */
        background-color: transparent;
        z-index: 1003;
        padding: 0 !important;
        zoom: 0.9;
        transition: all 0.3s ease;
    }

    /* Fix cho cÃ¡c link trong nav_menu */
    .base-column.nav_menu>a,
    .base-column.nav_menu .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        /* Equal distribution */
        padding: 0 !important;
        /* Remove padding */
        margin-right: 20px !important;
        /* Remove margin */
        text-align: center;
    }

    /* Äáº£m báº£o item-generic hiá»ƒn thá»‹ Ä‘Ãºng */
    .base-column.item.item-generic {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        width: auto !important;
        height: auto !important;
        flex: 1;
        /* Equal flex distribution */
        text-align: center;
        background-color: transparent;
    }

    /* Äáº£m báº£o header vÃ  content khÃ´ng bá»‹ overlap */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        margin-left: 0;
    }

    #wrapper {
        margin-left: 0;
        margin-top: 0;
        /* Äáº£m báº£o khÃ´ng bá»‹ overlap vá»›i navigation */
    }

    footer {
        margin-left: 0;
    }


    .nav_menu .item:hover {
        transform: translateY(-2px);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav_menu .item.item-live:hover {
        transform: translateY(-2px);
        background-color: rgba(226, 254, 53, 0.1);
    }

    .xicon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .nav_menu .item span {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Desktop nhá» - menu ngang */
@media screen and (max-width: 1284px) and (min-width: 1000px) {
    .container {
        max-width: 1600px;
        transition: all 0.3s ease;
        padding: 0 32px !important;
    }

    /* Grid layout for hot matches (3x4 = 12 matches) */
    .matches-container.matches-grid {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* Thay Ä‘á»•i tá»« 3 thÃ nh 4 */
        gap: 1rem;
        transition: all 0.3s ease;
    }

    /* Footer */
    .footer-elements {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        padding: 30px;
        border-radius: 40px;
    }

    .side-right .sr-links {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .side-right .sr-links a {
        font-size: 12.6px;
        padding: 8px 16px;
        border: 0.5px solid #ffffff;
        border-radius: 30px;
    }

    /* /--------/ */
    /* Layout chuyá»ƒn má»¥c */
    .matches-container-sport-type.matches-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important;
        /* Thay Ä‘á»•i tá»« 3 thÃ nh 4 */
        gap: 1rem;
        transition: all 0.3s ease;
    }

    /*Menu mobie*/
    .mobile-menu-active .top-menu {
        display: flex;
        position: absolute;
        gap: 0 !important;
        top: 75px;
        left: 20px;
        right: 0;
        width: 400px;
        background-color: rgba(18, 18, 21, 0.98);
        flex-direction: column;
        /* margin-top: 18%; */
        padding: 0 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        /* transform: translateY(-100%); */
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
        z-index: 10000;
        border-radius: 10px;
        align-items: center;
        justify-content: flex-stars;
    }

    .mobile-menu-active .top-menu .menu-item {
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 5px 0;
        width: 100%;
        /* flex-wrap:wrap; */
    }

    .mobile-menu-active .top-menu .menu-item .menu-link {
        font-size: 14px;
    }

    .mobile-menu-active .top-menu .menu-item .menu-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #e2fe35;
    }

    .mobile-menu-active .top-menu .menu-item .menu-link .sub-menu {
        position: absolute;
        /* flex:1 50%; */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(18, 18, 21, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

    .mobile-menu-active .top-menu .menu-item:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /**/
    .menu-toggle {
        display: block !important;
    }

    .top-menu {
        display: none;
    }

    .he-member {
        zoom: 0.9;
        transition: all 0.3s ease;
    }

    .btn.btn-block.btn-rounded.btn-bet.flash {
        display: none;
    }

    .btn-login {
        padding: 15px !important;
        border-radius: 10px;
        /* border:1.5px solid  */
    }

    .btn-login span {
        display: none;
    }

    .slide_container {
        height: clamp(360px, 20vw, 400px) !important;
        width: 100vw;
        /* Hoáº·c 100% tÃ¹y theo má»¥c Ä‘Ã­ch */
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        transition: all 0.3s ease;
    }

    .sc-logo {
        display: none;
    }

    .background_slide_container {
        width: 100vw;
        height: 100%;
        padding: 2.5rem;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between;
        transition: all 0.3s ease;
    }

    #top_slide {
        width: 100vw;
        /* Full viewport width */
        margin-left: calc(-50vw + 50%);
        /* CÄƒn giá»¯a vÃ  full width */
        margin-right: calc(-50vw + 50%);
        /* CÄƒn giá»¯a vÃ  full width */
        border-radius: 0 !important;
        /* Bá» border-radius khi full width */
    }

    .item-event-sport {
        display: none;
        transition: all 0.3s ease;
    }

    .content {
        flex: 1;
        max-width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* CÄƒn giá»¯a ná»™i dung theo chiá»u dá»c */
        align-items: flex-start;
        /* CÄƒn trÃ¡i */
        height: 100%;
        /* Chiáº¿m full height */
    }

    .sc-heading {
        font-size: 1.9rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        /* XÃ³a margin */
    }

    /* FIX: Sports section */
    .sports {
        flex: 0 0 50%;
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        /* CÄƒn giá»¯a theo chiá»u dá»c */
        height: 100%;
        /* Chiáº¿m full height */
    }

    .slide_container {
        height: clamp(400px, 15vw, 500px);
        transition: all 0.3s ease;
        border-radius: 5px !important;
    }

    .sport-item {
        flex: 1;
        min-width: 0;
        height: clamp(190px, 12vw, 235px);
        /* Responsive */
        max-width: none;
        transition: all 0.3s ease;
    }

    .sport-item .object img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Giá»¯ tá»· lá»‡, náº±m khÃ­t trong khung */
        object-position: center;
        /* CÄƒn giá»¯a */
        transform: scale(1.3);
        /* Thu nhá» 80% - tÃ¹y chá»‰nh tÃ¹y Ã½ */
        transition: transform 0.3s ease;
    }

    .sport-name {
        padding: 0.5rem 0;
        transition: all 0.3s ease;
    }

    .sport-name .name {
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    /* Hover effect */
    .sport-item:hover .object img {
        transform: scale(1.3);
        /* PhÃ³ng to khi hover */
    }

    #top_navbar {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* FIX: Äáº£m báº£o base-column hiá»ƒn thá»‹ Ä‘Ãºng vá»‹ trÃ­ */
    .base-column {
        position: static !important;
        /* Thay relative thÃ nh static */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin-top: 0;
        /* Reset margin-top */
        height: auto;
        /* Thay 5vh thÃ nh auto */
        min-height: 60px;
        /* Äáº£m báº£o cÃ³ chiá»u cao tá»‘i thiá»ƒu */
        z-index: 1001;
        /* Äáº£m báº£o hiá»ƒn thá»‹ trÃªn banner */
    }

    .base-column.flex-grow-1.nav_elements {
        width: 100%;
        height: auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .nav_clock {
        display: none !important;
    }

    /* FIX: Navigation wrapper container */
    .navbar_container {
        width: 100%;
        max-width: 1858px;
        /* Match container width */
        margin: 0 auto;
        padding: 0 32px !important;
        /* Fixed padding */
        background-color: rgba(18, 18, 21, 0.95);
        /* Äáº£m báº£o cÃ³ background */
        position: relative;
        /* Äáº£m báº£o hiá»ƒn thá»‹ */
        z-index: 1002;
        /* Higher z-index */
        display: flex;
        align-items: center;
        justify-content: flex-start;

    }

    /* Fix cho nav_menu container */
    .base-column.nav_menu {
        position: relative !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        /* Equal distribution */
        width: auto;
        margin: 0;
        /* Reset margin */
        min-height: 60px;
        padding: 15px 0;
        /* Vertical padding */
        background-color: transparent;
        z-index: 1003;
        padding: 0 !important;
        zoom: 0.9;
        transition: all 0.3s ease;
    }

    /* Fix cho cÃ¡c link trong nav_menu */
    .base-column.nav_menu>a,
    .base-column.nav_menu .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        /* Equal distribution */
        padding: 0 !important;
        /* Remove padding */
        margin-right: 20px !important;
        /* Remove margin */
        text-align: center;
    }

    /* Äáº£m báº£o item-generic hiá»ƒn thá»‹ Ä‘Ãºng */
    .base-column.item.item-generic {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        width: auto !important;
        height: auto !important;
        flex: 1;
        /* Equal flex distribution */
        text-align: center;
        background-color: transparent;
    }

    /* Äáº£m báº£o header vÃ  content khÃ´ng bá»‹ overlap */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        margin-left: 0;
    }

    #wrapper {
        margin-left: 0;
        margin-top: 0;
        /* Äáº£m báº£o khÃ´ng bá»‹ overlap vá»›i navigation */
    }

    footer {
        margin-left: 0;
    }


    .nav_menu .item:hover {
        transform: translateY(-2px);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav_menu .item.item-live:hover {
        transform: translateY(-2px);
        background-color: rgba(226, 254, 53, 0.1);
    }

    .xicon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .nav_menu .item span {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Tablet nhá» - menu ngang nhá» */
@media screen and (max-width: 999px) and (min-width: 800px) {
    .container {
        max-width: 1858px;
        transition: all 0.3s ease;
        padding: 0 32px !important;
    }

    /* Footer */
    .footer-elements {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        padding: 30px;
        border-radius: 40px;
    }

    .side-right .sr-links {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .side-right .sr-links a {
        font-size: 12.6px;
        padding: 8px 16px;
        border: 0.5px solid #ffffff;
        border-radius: 30px;
    }

    /* /--------/ */
    /* Layout chuyá»ƒn má»¥c */
    .matches-container-sport-type.matches-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        /* Thay Ä‘á»•i tá»« 3 thÃ nh 4 */
        gap: 1rem;
        transition: all 0.3s ease;
    }

    .matches-container-sport-type.matches-grid .team-vs .card-team.team-away {
        order: 1;
        /* Äáº·t bÃªn trÃ¡i */
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin-left: -130px !important;
    }

    /*Menu mobie*/
    .mobile-menu-active .top-menu {
        display: flex;
        position: absolute;
        gap: 0 !important;
        top: 75px;
        left: 20px;
        right: 0;
        width: 400px;
        background-color: rgba(18, 18, 21, 0.98);
        flex-direction: column;
        /* margin-top: 18%; */
        padding: 0 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        /* transform: translateY(-100%); */
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
        z-index: 10000;
        border-radius: 10px;
        align-items: center;
        justify-content: flex-stars;
    }

    .mobile-menu-active .top-menu .menu-item {
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 5px 0;
        width: 100%;
        /* flex-wrap:wrap; */
    }

    .mobile-menu-active .top-menu .menu-item .menu-link {
        font-size: 14px;
    }

    .mobile-menu-active .top-menu .menu-item .menu-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #e2fe35;
    }

    .mobile-menu-active .top-menu .menu-item .menu-link .sub-menu {
        position: absolute;
        /* flex:1 50%; */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(18, 18, 21, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

    .mobile-menu-active .top-menu .menu-item:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /**/
    .menu-toggle {
        display: block !important;
    }

    .top-menu {
        display: none;
    }

    .btn.btn-block.btn-rounded.btn-bet.flash {
        display: none;
    }

    .btn-rounded {
        padding: 12px !important;
        border-radius: 10px;
    }

    .btn-login span {
        display: none;
    }

    .btn-login i {
        scale: 0.9;
    }

    .slide_container {
        height: auto !important;
        width: 100vw;
        /* Hoáº·c 100% tÃ¹y theo má»¥c Ä‘Ã­ch */
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        transition: all 0.3s ease;
    }

    .sc-logo {
        display: none;
    }

    .background_slide_container {
        width: 100vw;
        height: 100%;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: space-between;
        transition: all 0.3s ease;
        row-gap: 5px !important;
    }

    #top_slide {
        width: 100vw;
        /* Full viewport width */
        margin-left: calc(-50vw + 50%);
        /* CÄƒn giá»¯a vÃ  full width */
        margin-right: calc(-50vw + 50%);
        /* CÄƒn giá»¯a vÃ  full width */
        border-radius: 0 !important;
        /* Bá» border-radius khi full width */
    }

    .item-event-sport {
        display: none;
        transition: all 0.3s ease;
    }

    .content {
        flex: 1;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* CÄƒn giá»¯a ná»™i dung theo chiá»u dá»c */
        align-items: flex-start;
        /* CÄƒn trÃ¡i */
        height: auto;
        /* Chiáº¿m full height */
        padding: 3rem;
        max-width: none !important;
    }

    .sc-heading {
        font-size: 1.9rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        /* XÃ³a margin */
    }

    /* FIX: Sports section */
    .sports {
        flex: 1 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        height: auto !important;
    }

    .slide_container {
        height: clamp(400px, 15vw, 500px);
        transition: all 0.3s ease;
        border-radius: 5px !important;
    }

    .sport-item {
        flex: 1;
        min-width: 0;
        height: clamp(300px, 12vw, 400px);
        /* Responsive */
        transition: all 0.3s ease;
        transform: rotate(0deg);
        border-radius: 0 !important;
    }

    .sport-item .object img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Giá»¯ tá»· lá»‡, náº±m khÃ­t trong khung */
        object-position: center;
        /* CÄƒn giá»¯a */
        transform: scale(1.3);
        /* Thu nhá» 80% - tÃ¹y chá»‰nh tÃ¹y Ã½ */
        transition: transform 0.3s ease;
    }

    .sport-name {
        padding: 0.5rem 0;
        transition: all 0.3s ease;
    }

    .sport-name .name {
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    /* Hover effect */
    .sport-item:hover .object img {
        transform: scale(1.3);
        /* PhÃ³ng to khi hover */
    }

    #top_navbar {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* FIX: Äáº£m báº£o base-column hiá»ƒn thá»‹ Ä‘Ãºng vá»‹ trÃ­ */
    .base-column {
        position: static !important;
        /* Thay relative thÃ nh static */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin-top: 0;
        /* Reset margin-top */
        height: auto;
        /* Thay 5vh thÃ nh auto */
        min-height: 60px;
        /* Äáº£m báº£o cÃ³ chiá»u cao tá»‘i thiá»ƒu */
        z-index: 1001;
        /* Äáº£m báº£o hiá»ƒn thá»‹ trÃªn banner */
    }

    .base-column.flex-grow-1.nav_elements {
        width: 100%;
        height: auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .nav_clock {
        display: none !important;
    }

    /* FIX: Navigation wrapper container */
    .navbar_container {
        width: 100%;
        max-width: 1858px;
        /* Match container width */
        margin: 0 auto;
        padding: 0 32px !important;
        /* Fixed padding */
        background-color: rgba(18, 18, 21, 0.95);
        /* Äáº£m báº£o cÃ³ background */
        position: relative;
        /* Äáº£m báº£o hiá»ƒn thá»‹ */
        z-index: 1002;
        /* Higher z-index */
        display: flex;
        align-items: center;
        justify-content: flex-start;

    }

    /* Fix cho nav_menu container */
    .base-column.nav_menu {
        position: relative !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        /* Equal distribution */
        width: auto;
        margin: 0;
        /* Reset margin */
        min-height: 60px;
        padding: 15px 0;
        /* Vertical padding */
        background-color: transparent;
        z-index: 1003;
        padding: 0 !important;
        zoom: 0.9;
        transition: all 0.3s ease;
    }

    /* Fix cho cÃ¡c link trong nav_menu */
    .base-column.nav_menu>a,
    .base-column.nav_menu .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        /* Equal distribution */
        padding: 0 !important;
        /* Remove padding */
        margin-right: 20px !important;
        /* Remove margin */
        text-align: center;
    }

    /* Äáº£m báº£o item-generic hiá»ƒn thá»‹ Ä‘Ãºng */
    .base-column.item.item-generic {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        width: auto !important;
        height: auto !important;
        flex: 1;
        /* Equal flex distribution */
        text-align: center;
        background-color: transparent;
    }

    /* Äáº£m báº£o header vÃ  content khÃ´ng bá»‹ overlap */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        margin-left: 0;
    }

    #wrapper {
        margin-left: 0;
        margin-top: 0;
        /* Äáº£m báº£o khÃ´ng bá»‹ overlap vá»›i navigation */
    }

    footer {
        margin-left: 0;
    }


    .nav_menu .item:hover {
        transform: translateY(-2px);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav_menu .item.item-live:hover {
        transform: translateY(-2px);
        background-color: rgba(226, 254, 53, 0.1);
    }

    .xicon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .nav_menu .item span {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Mobile - áº©n menu dá»c */
@media screen and (max-width: 799px) and (min-width: 640px) {
    .container {
        max-width: 960px;
        transition: all 0.3s ease;
        padding: 0 32px !important;
    }

    /* Footer */
    .footer-elements {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        padding: 30px;
        border-radius: 40px;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: 0;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }

    .side-left .sl-brand.line-center {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .side-right .sr-links {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .side-right .sr-links a {
        font-size: 12.6px;
        padding: 8px 16px;
        border: 0.5px solid #ffffff;
        border-radius: 30px;
    }

    /* /--------/ */
    /* Grid layout for hot matches (3x4 = 12 matches) */
    .matches-container.matches-grid {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* Thay Ä‘á»•i tá»« 3 thÃ nh 4 */
        gap: 1rem;
        transition: all 0.3s ease;
    }

    /* Layout chuyá»ƒn má»¥c */
    .matches-container-sport-type.matches-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        /* Thay Ä‘á»•i tá»« 3 thÃ nh 4 */
        gap: 1rem;
        transition: all 0.3s ease;
    }

    .matches-container-sport-type.matches-grid .team-vs .card-team.team-away {
        order: 1;
        /* Äáº·t bÃªn trÃ¡i */
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin-left: -200px !important;
    }

    /*Menu mobie*/
    .mobile-menu-active .top-menu {
        display: flex;
        position: absolute;
        gap: 0 !important;
        top: 75px;
        left: 20px;
        right: 0;
        width: 400px;
        background-color: rgba(18, 18, 21, 0.98);
        flex-direction: column;
        /* margin-top: 18%; */
        padding: 0 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        /* transform: translateY(-100%); */
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
        z-index: 10000;
        border-radius: 10px;
        align-items: center;
        justify-content: flex-stars;
    }

    .mobile-menu-active .top-menu .menu-item {
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 5px 0;
        width: 100%;
        /* flex-wrap:wrap; */
    }

    .mobile-menu-active .top-menu .menu-item .menu-link {
        font-size: 14px;
    }

    .mobile-menu-active .top-menu .menu-item .menu-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #e2fe35;
    }

    .mobile-menu-active .top-menu .menu-item .menu-link .sub-menu {
        position: absolute;
        /* flex:1 50%; */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(18, 18, 21, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

    .mobile-menu-active .top-menu .menu-item:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /**/
    .top-menu {
        display: none;
    }

    .menu-toggle {
        display: block !important;
    }

    .btn.btn-block.btn-rounded.btn-bet.flash {
        display: none;
    }

    .btn-rounded {
        padding: 12px !important;
        border-radius: 10px;
    }

    .btn-login span {
        display: none;
    }

    .btn-login i {
        scale: 0.9;
    }

    .slide_container {
        height: auto !important;
        width: 100vw;
        /* Hoáº·c 100% tÃ¹y theo má»¥c Ä‘Ã­ch */
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        transition: all 0.3s ease;
    }

    .sc-logo {
        display: none;
    }

    .background_slide_container {
        width: 100vw;
        height: 100%;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: space-between;
        transition: all 0.3s ease;
        row-gap: 5px !important;
    }

    #top_slide {
        width: 100vw;
        /* Full viewport width */
        margin-left: calc(-50vw + 50%);
        /* CÄƒn giá»¯a vÃ  full width */
        margin-right: calc(-50vw + 50%);
        /* CÄƒn giá»¯a vÃ  full width */
        border-radius: 0 !important;
        /* Bá» border-radius khi full width */
    }

    .item-event-sport {
        display: none;
        transition: all 0.3s ease;
    }

    .content {
        flex: 1;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* CÄƒn giá»¯a ná»™i dung theo chiá»u dá»c */
        align-items: flex-start;
        /* CÄƒn trÃ¡i */
        height: auto;
        /* Chiáº¿m full height */
        padding: 3rem;
        max-width: none !important;
    }

    .sc-heading {
        font-size: 1.9rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        /* XÃ³a margin */
    }

    /* FIX: Sports section */
    .sports {
        flex: 1 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        height: auto !important;
    }

    .slide_container {
        height: clamp(400px, 15vw, 500px);
        transition: all 0.3s ease;
        border-radius: 5px !important;
    }

    .sport-item {
        flex: 1;
        min-width: 0;
        height: clamp(250px, 12vw, 300px);
        /* Responsive */
        transition: all 0.3s ease;
        transform: rotate(0deg);
        border-radius: 0 !important;
    }

    .sport-item .object img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Giá»¯ tá»· lá»‡, náº±m khÃ­t trong khung */
        object-position: center;
        /* CÄƒn giá»¯a */
        transform: scale(1.3);
        /* Thu nhá» 80% - tÃ¹y chá»‰nh tÃ¹y Ã½ */
        transition: transform 0.3s ease;
    }

    .sport-name {
        padding: 0.5rem 0;
        transition: all 0.3s ease;
    }

    .sport-name .name {
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    /* Hover effect */
    .sport-item:hover .object img {
        transform: scale(1.3);
        /* PhÃ³ng to khi hover */
    }

    #top_navbar {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* FIX: Äáº£m báº£o base-column hiá»ƒn thá»‹ Ä‘Ãºng vá»‹ trÃ­ */
    .base-column {
        position: static !important;
        /* Thay relative thÃ nh static */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin-top: 0;
        /* Reset margin-top */
        height: auto;
        /* Thay 5vh thÃ nh auto */
        min-height: 60px;
        /* Äáº£m báº£o cÃ³ chiá»u cao tá»‘i thiá»ƒu */
        z-index: 1001;
        /* Äáº£m báº£o hiá»ƒn thá»‹ trÃªn banner */
    }

    .base-column.flex-grow-1.nav_elements {
        width: 100%;
        height: auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .nav_clock {
        display: none !important;
    }

    /* FIX: Navigation wrapper container */
    .navbar_container {
        width: 100%;
        max-width: 1858px;
        /* Match container width */
        margin: 0 auto;
        padding: 0 32px !important;
        /* Fixed padding */
        background-color: rgba(18, 18, 21, 0.95);
        /* Äáº£m báº£o cÃ³ background */
        position: relative;
        /* Äáº£m báº£o hiá»ƒn thá»‹ */
        z-index: 1002;
        /* Higher z-index */
        display: flex;
        align-items: center;
        justify-content: flex-start;

    }

    /* Fix cho nav_menu container */
    .base-column.nav_menu {
        position: relative !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        /* Equal distribution */
        width: auto;
        margin: 0;
        /* Reset margin */
        min-height: 60px;
        padding: 15px 0;
        /* Vertical padding */
        background-color: transparent;
        z-index: 1003;
        padding: 0 !important;
        zoom: 0.8;
        transition: all 0.3s ease;
    }

    /* Fix cho cÃ¡c link trong nav_menu */
    .base-column.nav_menu>a,
    .base-column.nav_menu .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        /* Equal distribution */
        padding: 0 !important;
        /* Remove padding */
        margin-right: 20px !important;
        /* Remove margin */
        text-align: center;
    }

    /* Äáº£m báº£o item-generic hiá»ƒn thá»‹ Ä‘Ãºng */
    .base-column.item.item-generic {
        display: flex !important;
        align-items: center;
        justify-content: flex-start;
        width: auto !important;
        height: auto !important;
        flex: 1;
        /* Equal flex distribution */
        text-align: center;
        background-color: transparent;
    }

    /* Äáº£m báº£o header vÃ  content khÃ´ng bá»‹ overlap */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        margin-left: 0;
    }

    #wrapper {
        margin-left: 0;
        margin-top: 0;
        /* Äáº£m báº£o khÃ´ng bá»‹ overlap vá»›i navigation */
    }

    footer {
        margin-left: 0;
    }


    .nav_menu .item:hover {
        transform: translateY(-2px);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav_menu .item.item-live:hover {
        transform: translateY(-2px);
        background-color: rgba(226, 254, 53, 0.1);
    }

    .xicon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .nav_menu .item span {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 639px) and (min-width: 365px) {
    .container {
        max-width: 960px;
        transition: all 0.3s ease;
        padding: 0 15px !important;
    }

    /* Footer */
    .footer-elements {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        padding: 30px;
        border-radius: 40px;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: 0;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }

    .side-left .sl-brand.line-center {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .side-right .sr-links {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .side-right .sr-links a {
        font-size: 12.6px;
        padding: 8px 16px;
        border: 0.5px solid #ffffff;
        border-radius: 30px;
    }

    /* /--------/ */
    /* Grid layout for hot matches (3x4 = 12 matches) */
    .matches-container.matches-grid {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* Thay Ä‘á»•i tá»« 3 thÃ nh 4 */
        gap: 1rem;
        transition: all 0.3s ease;
    }

    /* Layout chuyá»ƒn má»¥c */
    .matches-container-sport-type.matches-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        /* Thay Ä‘á»•i tá»« 3 thÃ nh 4 */
        gap: 1rem;
        transition: all 0.3s ease;
    }

    .matches-container-sport-type.matches-grid .team-vs .card-team.team-away {
        order: 1;
        /* Äáº·t bÃªn trÃ¡i */
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin-left: -120px !important;
    }

    /*Menu mobie*/
    .mobile-menu-active .top-menu {
        display: flex;
        position: absolute;
        gap: 0 !important;
        top: 75px;
        left: 20px;
        right: 0;
        width: 300px;
        background-color: rgba(18, 18, 21, 0.98);
        flex-direction: column;
        /* margin-top: 18%; */
        padding: 0 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        /* transform: translateY(-100%); */
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
        z-index: 10000;
        border-radius: 10px;
        align-items: center;
        justify-content: flex-stars;
    }

    .mobile-menu-active .top-menu .menu-item {
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 5px 0;
        width: 100%;
        /* flex-wrap:wrap; */
    }

    .mobile-menu-active .top-menu .menu-item .menu-link {
        font-size: 14px;
    }

    .mobile-menu-active .top-menu .menu-item .menu-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #e2fe35;
    }

    .mobile-menu-active .top-menu .menu-item .menu-link .sub-menu {
        position: absolute;
        /* flex:1 50%; */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(18, 18, 21, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

    .mobile-menu-active .top-menu .menu-item:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /**/
    .header-elements {
        padding: 0.8rem 0;
    }

    .for-mobile.menu-toggle #logo {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .top-menu {
        display: none;
    }

    .menu-toggle {
        display: block !important;
    }

    .btn.btn-block.btn-rounded.btn-bet.flash {
        display: none;
    }

    .btn-rounded {
        padding: 12px !important;
        border-radius: 10px;
    }

    .btn-login span {
        display: none;
    }

    .btn-login i {
        scale: 0.9;
    }

    .slide_container {
        height: auto !important;
        width: 100vw;
        /* Hoáº·c 100% tÃ¹y theo má»¥c Ä‘Ã­ch */
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        transition: all 0.3s ease;
    }

    .sc-logo {
        display: none;
    }

    .background_slide_container {
        width: 100vw;
        height: 100%;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: space-between;
        transition: all 0.3s ease;
        row-gap: 5px !important;
    }

    #top_slide {
        width: 100vw;
        /* Full viewport width */
        margin-left: calc(-50vw + 50%);
        /* CÄƒn giá»¯a vÃ  full width */
        margin-right: calc(-50vw + 50%);
        /* CÄƒn giá»¯a vÃ  full width */
        border-radius: 0 !important;
        /* Bá» border-radius khi full width */
    }

    .item-event-sport {
        display: none;
        transition: all 0.3s ease;
    }

    .content {
        flex: 1;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* CÄƒn giá»¯a ná»™i dung theo chiá»u dá»c */
        align-items: flex-start;
        /* CÄƒn trÃ¡i */
        height: auto;
        /* Chiáº¿m full height */
        padding: 1.5rem;
        max-width: none !important;
    }

    .sc-heading {
        font-size: 1.5rem !important;
        font-weight: 600;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .description {
        font-size: 0.8rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        /* XÃ³a margin */
    }

    /* FIX: Sports section */
    .sports {
        display: none !important;
    }

    .slide_container {
        height: clamp(400px, 15vw, 500px);
        transition: all 0.3s ease;
        border-radius: 5px !important;
    }

    .sport-item {
        flex: 1;
        min-width: 0;
        height: clamp(250px, 12vw, 300px);
        /* Responsive */
        transition: all 0.3s ease;
        transform: rotate(0deg);
        border-radius: 0 !important;
    }

    .sport-item .object img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Giá»¯ tá»· lá»‡, náº±m khÃ­t trong khung */
        object-position: center;
        /* CÄƒn giá»¯a */
        transform: scale(1.3);
        /* Thu nhá» 80% - tÃ¹y chá»‰nh tÃ¹y Ã½ */
        transition: transform 0.3s ease;
    }

    .sport-name {
        padding: 0.5rem 0;
        transition: all 0.3s ease;
    }

    .sport-name .name {
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    /* Hover effect */
    .sport-item:hover .object img {
        transform: scale(1.3);
        /* PhÃ³ng to khi hover */
    }

    #top_navbar {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* FIX: Äáº£m báº£o base-column hiá»ƒn thá»‹ Ä‘Ãºng vá»‹ trÃ­ */
    .base-column {
        position: static !important;
        /* Thay relative thÃ nh static */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin-top: 0;
        /* Reset margin-top */
        height: auto;
        /* Thay 5vh thÃ nh auto */
        min-height: 60px;
        /* Äáº£m báº£o cÃ³ chiá»u cao tá»‘i thiá»ƒu */
        z-index: 1001;
        /* Äáº£m báº£o hiá»ƒn thá»‹ trÃªn banner */
    }

    .base-column.flex-grow-1.nav_elements {
        width: 100vw;
        height: auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .nav_clock {
        display: none !important;
    }

    /* FIX: Navigation wrapper container */
    .navbar_container {
        width: 100%;
        max-width: 1858px;
        /* Match container width */
        margin: 0 auto;
        padding: 0 32px !important;
        /* Fixed padding */
        background-color: rgba(18, 18, 21, 0.95);
        /* Äáº£m báº£o cÃ³ background */
        position: relative;
        /* Äáº£m báº£o hiá»ƒn thá»‹ */
        z-index: 1002;
        /* Higher z-index */
        display: flex;
        align-items: center;
        justify-content: flex-start;

    }

    /* Fix cho nav_menu container */
    .base-column.nav_menu {
        position: relative !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        margin: 0;
        /* Reset margin */
        min-height: 60px;
        padding: 15px 0;
        /* Vertical padding */
        background-color: transparent;
        z-index: 1003;
        padding: 0 !important;
        zoom: 0.8;
        transition: all 0.3s ease;
        gap: 0 !important;
    }

    /* Fix cho cÃ¡c link trong nav_menu */
    .base-column.nav_menu>a,
    .base-column.nav_menu .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        /* Equal distribution */
        padding: 0 !important;
        /* Remove padding */
        text-align: center;
        width: 100%;
        margin: 0 !important;
    }

    /* Äáº£m báº£o item-generic hiá»ƒn thá»‹ Ä‘Ãºng */
    .base-column.item.item-generic {
        display: flex !important;
        align-items: center;
        justify-content: space-around;
        width: 100% !important;
        height: 100% !important;
        flex: 1;
        /* Equal flex distribution */
        text-align: center;
        background-color: #FFFFFF22;
        border-radius: 0 !important;
        border: 0.25px solid #000000 !important;
    }

    .base-column.item.item-generic span {
        display: none;
    }

    /* Äáº£m báº£o header vÃ  content khÃ´ng bá»‹ overlap */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        margin-left: 0;
    }

    #wrapper {
        margin-left: 0;
        margin-top: 0;
        /* Äáº£m báº£o khÃ´ng bá»‹ overlap vá»›i navigation */
    }

    footer {
        margin-left: 0;
    }


    .nav_menu .item:hover {
        transform: translateY(-2px);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav_menu .item.item-live:hover {
        transform: translateY(-2px);
        background-color: rgba(226, 254, 53, 0.1);
    }

    .xicon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .nav_menu .item span {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 365px) and (min-width: 170px) {
    .container {
        max-width: 960px;
        transition: all 0.3s ease;
        padding: 0 15px !important;
    }

    /* Grid layout for hot matches (3x4 = 12 matches) */
    .matches-container.matches-grid {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* Thay Ä‘á»•i tá»« 3 thÃ nh 4 */
        gap: 1rem;
        transition: all 0.3s ease;
    }

    /* Footer */
    .footer-elements {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
        padding: 30px;
        border-radius: 40px;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: 0;
        left: 0;
        right: 0;
        box-sizing: border-box;
    }

    .side-left .sl-brand.line-center {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .side-right .sr-links {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .side-right .sr-links a {
        font-size: 12.6px;
        padding: 8px 16px;
        border: 0.5px solid #ffffff;
        border-radius: 30px;
    }

    /* /--------/ */
    /* Layout chuyá»ƒn má»¥c */
    .matches-container-sport-type.matches-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr) !important;
        /* Thay Ä‘á»•i tá»« 3 thÃ nh 4 */
        gap: 1rem;
        transition: all 0.3s ease;
    }

    /*Menu mobie*/
    .mobile-menu-active .top-menu {
        display: flex;
        position: absolute;
        gap: 0 !important;
        top: 75px;
        left: 20px;
        right: 0;
        width: 300px;
        background-color: rgba(18, 18, 21, 0.98);
        flex-direction: column;
        /* margin-top: 18%; */
        padding: 0 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        /* transform: translateY(-100%); */
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.5));
        z-index: 10000;
        border-radius: 10px;
        align-items: center;
        justify-content: flex-stars;
    }

    .mobile-menu-active .top-menu .menu-item {
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 5px 0;
        width: 100%;
        /* flex-wrap:wrap; */
    }

    .mobile-menu-active .top-menu .menu-item .menu-link {
        font-size: 14px;
    }

    .mobile-menu-active .top-menu .menu-item .menu-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #e2fe35;
    }

    .mobile-menu-active .top-menu .menu-item .menu-link .sub-menu {
        position: absolute;
        /* flex:1 50%; */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(18, 18, 21, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

    .mobile-menu-active .top-menu .menu-item:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /**/
    .header-elements {
        padding: 0.8rem 0;
        gap: 0.5rem;
    }

    .top-menu {
        display: none;
    }

    .menu-toggle {
        display: block !important;
    }

    .btn.btn-block.btn-rounded.btn-bet.flash {
        display: none;
    }

    .btn-rounded {
        padding: 12px !important;
        border-radius: 10px;
    }

    .btn-login span {
        display: none;
    }

    .btn-login i {
        scale: 0.9;
    }

    .slide_container {
        height: auto !important;
        width: 100vw;
        /* Hoáº·c 100% tÃ¹y theo má»¥c Ä‘Ã­ch */
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        transition: all 0.3s ease;
    }

    .sc-logo {
        display: none;
    }

    .background_slide_container {
        width: 100vw;
        height: 100%;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: space-between;
        transition: all 0.3s ease;
        row-gap: 5px !important;
    }

    #top_slide {
        width: 100vw;
        /* Full viewport width */
        margin-left: calc(-50vw + 50%);
        /* CÄƒn giá»¯a vÃ  full width */
        margin-right: calc(-50vw + 50%);
        /* CÄƒn giá»¯a vÃ  full width */
        border-radius: 0 !important;
        /* Bá» border-radius khi full width */
    }

    .item-event-sport {
        display: none;
        transition: all 0.3s ease;
    }

    .content {
        flex: 1;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* CÄƒn giá»¯a ná»™i dung theo chiá»u dá»c */
        align-items: flex-start;
        /* CÄƒn trÃ¡i */
        height: auto;
        /* Chiáº¿m full height */
        padding: 1.5rem;
        max-width: none !important;
    }

    .sc-heading {
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .description {
        font-size: 0.8rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        margin: 0;
        /* XÃ³a margin */
    }

    /* FIX: Sports section */
    .sports {
        display: none !important;
    }

    .slide_container {
        height: clamp(400px, 15vw, 500px);
        transition: all 0.3s ease;
        border-radius: 5px !important;
    }

    .sport-item {
        flex: 1;
        min-width: 0;
        height: clamp(250px, 12vw, 300px);
        /* Responsive */
        transition: all 0.3s ease;
        transform: rotate(0deg);
        border-radius: 0 !important;
    }

    .sport-item .object img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Giá»¯ tá»· lá»‡, náº±m khÃ­t trong khung */
        object-position: center;
        /* CÄƒn giá»¯a */
        transform: scale(1.3);
        /* Thu nhá» 80% - tÃ¹y chá»‰nh tÃ¹y Ã½ */
        transition: transform 0.3s ease;
    }

    .sport-name {
        padding: 0.5rem 0;
        transition: all 0.3s ease;
    }

    .sport-name .name {
        font-size: 0.9rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    /* Hover effect */
    .sport-item:hover .object img {
        transform: scale(1.3);
        /* PhÃ³ng to khi hover */
    }

    #top_navbar {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* FIX: Äáº£m báº£o base-column hiá»ƒn thá»‹ Ä‘Ãºng vá»‹ trÃ­ */
    .base-column {
        position: static !important;
        /* Thay relative thÃ nh static */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        margin-top: 0;
        /* Reset margin-top */
        height: auto;
        /* Thay 5vh thÃ nh auto */
        min-height: 60px;
        /* Äáº£m báº£o cÃ³ chiá»u cao tá»‘i thiá»ƒu */
        z-index: 1001;
        /* Äáº£m báº£o hiá»ƒn thá»‹ trÃªn banner */
    }

    .base-column.flex-grow-1.nav_elements {
        width: 100vw;
        height: auto !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .nav_clock {
        display: none !important;
    }

    /* FIX: Navigation wrapper container */
    .navbar_container {
        width: 100%;
        max-width: 1858px;
        /* Match container width */
        margin: 0 auto;
        padding: 0 32px !important;
        /* Fixed padding */
        background-color: rgba(18, 18, 21, 0.95);
        /* Äáº£m báº£o cÃ³ background */
        position: relative;
        /* Äáº£m báº£o hiá»ƒn thá»‹ */
        z-index: 1002;
        /* Higher z-index */
        display: flex;
        align-items: center;
        justify-content: flex-start;

    }

    /* Fix cho nav_menu container */
    .base-column.nav_menu {
        position: relative !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        width: 100%;
        margin: 0;
        /* Reset margin */
        min-height: 60px;
        padding: 15px 0;
        /* Vertical padding */
        background-color: transparent;
        z-index: 1003;
        padding: 0 !important;
        zoom: 0.8;
        transition: all 0.3s ease;
        gap: 0 !important;
    }

    /* Fix cho cÃ¡c link trong nav_menu */
    .base-column.nav_menu>a,
    .base-column.nav_menu .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        /* Equal distribution */
        padding: 0 !important;
        /* Remove padding */
        text-align: center;
        width: 100%;
        margin: 0 !important;
    }

    /* Äáº£m báº£o item-generic hiá»ƒn thá»‹ Ä‘Ãºng */
    .base-column.item.item-generic {
        display: flex !important;
        align-items: center;
        justify-content: space-around;
        width: 100% !important;
        height: 100% !important;
        flex: 1;
        /* Equal flex distribution */
        text-align: center;
        background-color: #FFFFFF22;
        border-radius: 0 !important;
        border: 0.25px solid #000000 !important;
    }

    .base-column.item.item-generic span {
        display: none;
    }

    /* Äáº£m báº£o header vÃ  content khÃ´ng bá»‹ overlap */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        margin-left: 0;
    }

    #wrapper {
        margin-left: 0;
        margin-top: 0;
        /* Äáº£m báº£o khÃ´ng bá»‹ overlap vá»›i navigation */
    }

    footer {
        margin-left: 0;
    }


    .nav_menu .item:hover {
        transform: translateY(-2px);
        background-color: rgba(255, 255, 255, 0.05);
    }

    .nav_menu .item.item-live:hover {
        transform: translateY(-2px);
        background-color: rgba(226, 254, 53, 0.1);
    }

    .xicon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .nav_menu .item span {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .top-menu {
        display: none;
    }

    .nav_menu {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .nav_menu .item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .sc-heading {
        font-size: 1.9rem;
    }

    .footer-elements {
        flex-direction: column;
        gap: 2rem;
    }

    .sl-brand {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/*Layout Tráº­n Äáº¥u*/
@media screen and (max-width: 1500px) {
    .w-100.sc-headline {
        display: none;
    }

    #layout_fluid {
        flex-direction: column;
        /* Chuyá»ƒn sang layout dá»c */
        gap: 2rem;
    }

    #primary_column {
        flex: none;
        /* Bá» flex Ä‘á»ƒ chiáº¿m full width */
        width: 100%;
        order: 1;
        /* Äáº£m báº£o primary column á»Ÿ trÃªn */
    }

    #secondary_column {
        flex: none;
        width: 100%;
        max-width: none;
        /* Bá» giá»›i háº¡n max-width */
        order: 2;
        /* Äáº£m báº£o secondary column á»Ÿ dÆ°á»›i */
    }
}

/* Additional Base Layout Classes */

.base-column {
    display: flex;
    flex-direction: column;
    z-index: 999;
    /* Default styles - sáº½ Ä‘Æ°á»£c override bá»Ÿi media queries */
    /* Styles nÃ y sáº½ Ä‘Æ°á»£c Ä‘iá»u chá»‰nh bá»Ÿi responsive breakpoints */
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.item-flex {
    display: flex;
    align-items: center;
}

/* Member and Bet Buttons */
.he-member {
    display: flex;
    align-items: center;
    width: auto;
    gap: 1rem !important;
}

.he-bet {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.he-bet a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-block {
    display: block;
}

.btn.btn-rounded.btn-outline.btn-login {
    column-gap: 0.5rem;
}

/* Small text utility */
.small-text {
    font-size: 0.875rem;
}

/* Icon utilities */
.inc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-14 {
    width: 14px;
    height: 14px;
}

/* Loading and content states */
.matches-content {
    text-align: center;
    padding: 2rem;
    color: #ccc;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Toastify compatibility */
.Toastify {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
}

/* Cover element */
.cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-active .icon-menu span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-active .icon-menu span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-active .icon-menu span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.for-mobile:active .icon-menu span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.for-mobile:active .icon-menu span:nth-child(2) {
    opacity: 0;
}

.for-mobile:active .icon-menu span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


/* WordPress specific */
.screen-reader-text {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.wp-caption {
    max-width: 100%;
    margin: 0 auto;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

.sticky {
    position: sticky;
}

.gallery-caption {
    text-align: center;
    font-style: italic;
}

.bypostauthor {
    background-color: rgba(226, 254, 53, 0.05);
}

/**
 * ========================================
 * MATCH CARDS DESIGN - Based on HTML structure
 * ========================================
 */

/* Matches Container */
.matches-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.matches-container-sport-type {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

/* Grid layout for hot matches (3x4 = 12 matches) */
.matches-container.matches-grid {
    min-height: auto;
}

/* Layout chuyá»ƒn má»¥c */
.matches-container-sport-type.matches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Thay Ä‘á»•i tá»« 3 thÃ nh 4 */
    gap: 1rem;
}

.matches-container-sport-type.matches-grid .team-vs {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.matches-container-sport-type.matches-grid .team-vs .current-vs {
    margin: 0;
    order: 3;
    /* Äáº·t á»Ÿ giá»¯a */
}

.matches-container-sport-type.matches-grid .card-match {
    padding-bottom: 50px;
    min-height: 214px;
}

.matches-container-sport-type.matches-grid .team-vs .card-team.team-home {
    order: 1;
    /* Äáº·t bÃªn trÃ¡i */
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.matches-container-sport-type.matches-grid .team-vs .card-team.team-away {
    order: 1;
    /* Äáº·t bÃªn trÃ¡i */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: -55px;
}

.matches-container-sport-type.matches-grid .team-vs .card-team.team-home .name-short {
    position: absolute;
    left: 0;
    white-space: nowrap;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    top: 120px;
    overflow: hidden;
}

.matches-container-sport-type.matches-grid .team-vs .card-team.team-away .name-short {
    position: absolute;
    white-space: nowrap;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    top: 140px;
    left: 0;
    overflow: hidden;
}

.matches-container-sport-type.matches-grid .btn.btn-sm.btn-live {
    display: none;
}

.btn.btn-sm.btn-live:hover {
    background-color: #218838;
}

/* Team vs Team Layout */

/* Alternative: Náº¿u muá»‘n score/VS á»Ÿ chÃ­nh giá»¯a thay vÃ¬ pháº£i */
.team-vs.center-score {
    justify-content: space-between;
}

.team-vs.center-score .current-vs {
    margin-left: 0;
    order: 2;
    /* Äáº·t á»Ÿ giá»¯a */
}

.team-vs.center-score .card-team.team-home {
    order: 1;
    /* Äáº·t bÃªn trÃ¡i */
}

.team-vs.center-score .card-team.team-away {
    order: 3;
    /* Äáº·t bÃªn pháº£i */
}


/* No matches fallback */
.no-matches {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #999;
}

.no-matches p {
    font-size: 16px;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .matches-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .matches-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Card Single */
.card-single {
    width: 100%;
}

/* Card Match */
.card-match {
    position: relative;
    background: #1f1f2e;
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    min-height: 252px
}

.card-match:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Match Link */
.match-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    cursor: pointer;
}

/* Corner */
.corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #121215;
    border-bottom-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    padding-bottom: 20px;
    padding-right: 1px;
}

.corner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.corner .xicon {
    position: relative;
    top: 0;
    right: 0;
    z-index: 3;
    filter: none !important;
    /* Loáº¡i bá» filter Ä‘á»ƒ hiá»ƒn thá»‹ mÃ u gá»‘c */
    width: 35px;
    height: 35px;
}

/* Sá»­a selector vÃ  Ä‘Æ°á»ng dáº«n Ä‘Ãºng */
.corner .xicon.xicon-football {
    background-image: url('./img/icons/football.webp') !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

/* Corner specific styling for different sport icons */
.corner .xicon.xicon-football {
    background-image: url('./img/sport-football.webp') !important;
}

.corner .xicon.xicon-basketball {
    background-image: url('./img/icons/basketball.webp') !important;
    border-radius: 10px;
}

.corner .xicon.xicon-volleyball {
    background-image: url('./img/icons/volleyball.webp') !important;
    border-radius: 10px;
}

.corner .xicon.xicon-tennis {
    background-image: url('./img/icons/tennis.webp') !important;
    border-radius: 10px;
}

/* Override filter cho táº¥t cáº£ xicon trong corner */
.corner .xicon {
    filter: none !important;
}

/* Debug: Äáº£m báº£o icon football hiá»ƒn thá»‹ Ä‘Ãºng */
.corner .xicon.xicon-football {
    background-color: transparent !important;
    background-image: url('./img/icons/football.webp') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* CM BLV */
.cm-blv {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background: rgba(84, 83, 95, 0.9);
    border-radius: 50px;
    padding: 4px 12px 4px 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 2;
    gap: 8px;
}

.cm-blv .avatar {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
}

.cm-blv .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cm-blv .blv-name {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* CM Wrap */
.cm-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-shrink-0 {
    width: auto;
}

/* Match Time */
.match-time {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* column-gap: 4px; */
    margin-bottom: 8px;
    width: 100%;
}

.match-time .line-center {
    display: flex;
    align-items: center;
    /* column-gap: 8px; */
}

.status-match {
    color: #ff4757;
    padding: 4px 12px;
    /* border-radius: 12px; */
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s infinite;
    /* box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4); */
}

.match-time .time {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-right: 8px;
}

.match-time .time-count {
    display: inline-block;
    white-space: nowrap;
    font-size: 12px;
    background: #f9e8b0;
    border-radius: 5px;
    font-weight: 600;
    color: #333333;
    padding: 2px 4px;
}

/* League */
.league {
    color: #999999;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Team VS */
.team-vs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin: 20px 0; */
    width: 100%;
    min-height: 96px;
}

.current-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    width: 80px;
    height: 36px;
}

.current-vs .score {
    display: inline-block;
}

.card-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 35%;
    row-gap: 8px;
    justify-content: center;
}

.card-team .current {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-team .current img {
    /* width: 100%; */
    /* height: 100%; */
    max-width: 46px;
    max-height: 46px;
    object-fit: cover;
}

/* Match Buttons */
.match-buttons {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    margin-top: 16px;
    /* padding-left: 76%; */
}

.card-match.layout-highlight .cm-blv {
    position: static;
    right: auto;
    bottom: auto;
}

.card-match.layout-highlight .match-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
}

.card-match.layout-highlight .match-bottom-row .match-buttons {
    width: auto;
    margin-top: 0;
}

.matches-container-hot .cm-blv .avatar {
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 50%;
}

.matches-container-hot .cm-blv .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.matches-container-hot .cm-blv .blv-name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}


.card-match.layout-highlight .match-buttons .btn {
    min-width: 90px;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 204, 106, 0.4);
}

.match-buttons .btn,
.match-buttons .match-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: .4rem;
    font-weight: 600;
    text-transform: none;
    transition: all 0.2s ease;
}

.match-btn.pending,
.match-buttons .btn.pending {
    background: #3a3845;
    color: #d5d2e0;
    border: none;
}

.match-btn.live,
.match-buttons .btn.live {
    background: #ff4141;
    color: #fff;
    border: none;
}

.match-btn:hover,
.match-buttons .btn.live:hover,
.match-buttons .btn.pending:hover {
    filter: brightness(1.05);
}

@media (max-width: 768px) {
    .card-match.layout-highlight .match-bottom-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .card-match.layout-highlight .match-bottom-row .match-buttons {
        justify-content: center;
        width: 100%;
    }
}

.btn.btn-live {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 255, 136, 0.3);
    z-index: 2;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.btn.btn-live:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

/* Animations */
@keyframes pulse {

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

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Responsive */
/* @media (max-width: 768px) {
    .card-match {
        padding: 16px;
    }
    
    .cm-wrap {
        padding-right: 50px;
        padding-bottom: 45px;
    }
    
    .corner {
        width: 45px;
        height: 45px;
    }
    
    .cm-blv {
        min-height: 32px;
    }
    
    .cm-blv .avatar {
        width: 32px;
        height: 32px;
    }
} */
/* =====================================================
   LEAGUE TABLE / Báº¢NG Xáº¾P Háº NG STYLES
   ===================================================== */

/* Main Chart Container */
.sc-chart {
    margin-bottom: 24px;
}

.sc-chart .box-main {
    background: linear-gradient(135deg, #1e2a3a 0%, #2d4a5c 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Chart Header */
.cw_header {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cw_header .heading-md {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.cw_header i {
    margin-right: 8px;
    color: #00ff88;
}

.more-button {
    color: #00ff88 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.more-button:hover {
    color: #00cc6a !important;
    transform: translateX(2px);
}

/* League Selector Dropdown */
.cw_select {
    padding: 10px;
}

.cw_select .btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cw_select .btn:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 255, 136, 0.3);
}

.cw_select .base-icon.icon-16 {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.cw_select .base-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cw_select .fa-angle-down {
    color: #00ff88;
    font-size: 14px;
}

/* Table Structure */
.cw_rows {
    background: transparent;
}

/* Table Header */
.item.item-head {
    display: grid;
    grid-template-columns: 50px 1fr 60px 60px;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item.item-head .number {
    font-weight: 500;
    font-size: 13px;
}

.item.item-head .team {
    font-weight: 500;
    font-size: 13px;
}

.item.item-head .game {
    font-weight: 500;
    font-size: 13px;
}

/* Team Rows */
.teams_wrap {
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #00ff88 transparent;
}

.teams_wrap::-webkit-scrollbar {
    width: 4px;
}

.teams_wrap::-webkit-scrollbar-track {
    background: transparent;
}

.teams_wrap::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 2px;
}

.teams_wrap .item.item-team {

    font-size: 14px;
}

.item.item-team {
    display: grid;
    grid-template-columns: 50px 1fr 50px 50px;
    align-items: flex-start;
    padding: 8px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    background: transparent;
}

.item.item-team:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.2);
}

.item.item-team .number {
    width: 26px;
    height: 26px;
}

/* Position Numbers */
.number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

.number.tier-1 {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.number.tier-2 {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
}

.number.tier-3,
.number.tier-3o {
    background: linear-gradient(135deg, #6ca5af, #a6c2ff);
    color: #fff;
}

.number.tier-out {
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: #fff;
}

/* fallback cho Ä‘á»™i thÆ°á»ng */
.number:not(.tier-1):not(.tier-2):not(.tier-3):not(.tier-3o):not(.tier-out) {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}


/* Team Info */
.team {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.team .base-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team .base-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team .name-short {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.card-team.team-home span {
    font-size: 13px;
}

.card-team.team-away span {
    font-size: 13px;
}

span.name-short {
    text-align: center;
    width: 100%;
    /* náº¿u cáº§n, Ä‘á»ƒ span chiáº¿m trá»n chiá»u rá»™ng cha */
    display: block;
    /* hoáº·c inline-block náº¿u muá»‘n */
}

/* Games and Points */
.game,
.point {
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.point {
    color: #00ff88;
    font-weight: 700;
}

/* Legend/Notes Section */
.cw_note {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.group.group-left {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tier {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.tier-1-color {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 2px;
}

.tier-2-color {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.tier-3-color,
.tier-3o-color {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #6ca5af, #a6c2ff);
    border-radius: 2px;
}

.tier-out-color {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff4757, #ff3838);
    border-radius: 2px;
}


/* Expand Button */
.cw_expand .btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cw_expand .btn:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
    transform: translateY(-1px);
}

.cw_expand .btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cw_expand .btn:hover i {
    transform: rotate(180deg);
}

.cw_header.line-center.py-3.px-4 .line-center {
    margin: 10px;
}

.name-short.lim.lim-1 {
    font-size: 14px;
}

.group.group-left.line-center {
    padding: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {

    .item.item-head,
    .item.item-team {
        grid-template-columns: 40px 1fr 60px 60px;
        padding: 10px 15px;
    }

    .team .name-short {
        font-size: 13px;
    }

    .team .base-icon {
        width: 24px;
        height: 24px;
    }

    .number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .game,
    .point {
        font-size: 13px;
    }

    .cw_header {
        padding: 15px 20px;
    }

    .cw_header .heading-md {
        font-size: 16px;
    }

    .group.group-left {
        gap: 15px;
    }

    .tier {
        font-size: 11px;
    }
}

@media (max-width: 480px) {

    .item.item-head,
    .item.item-team {
        grid-template-columns: 35px 1fr 50px 50px;
        padding: 8px 12px;
    }

    .cw_select {
        margin: 0 15px;
    }

    .teams_wrap {
        max-height: 300px;
    }
}

/* Commentator Section Styles */
.w-100.sc-commentator {
    margin-bottom: 2rem;
}

.sc-commentator .box-main {
    background: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
}

.sc-commentator .comm-list {
    padding: 0;
}

.sc-commentator .item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-bottom: 1px solid #404040;
    background: #1f1f2e;
    transition: background-color 0.2s ease;
}

.sc-commentator .item:last-child {
    border-bottom: none;
}

/* Avatar */
.sc-commentator .user-avatar {
    flex-shrink: 0;
    margin-right: 1rem;
}

.sc-commentator .user-avatar img {
    width: 69px;
    height: 69px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #404040;
}

/* Commentator Info */
.sc-commentator .comm-info {
    flex-grow: 1;
    min-width: 0;
}

.sc-commentator .name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.sc-commentator .small {
    color: #888888;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

/* Match List */
.sc-commentator .match-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sc-commentator .ml-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    background: #1f1f2e;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid #FF6B35;
}

.sc-commentator .ml-item:hover {
    background: #1f1f2e;
    transform: translateX(2px);
    text-decoration: none;
}

.ml-item.line-center {
    border-left: 0px !important;
}

.status .type {
    color: #ffffff !important;
}

/* Teams Section */
.sc-commentator .teams {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.sc-commentator .base-icon.icon-20 {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
    background: #404040;
}

.sc-commentator .base-icon.icon-20 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Status Section */
.sc-commentator .status {
    text-align: right;
    flex-shrink: 0;
    margin-left: 1rem;
}

.sc-commentator .type {
    color: #FF6B35;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.sc-commentator .status small {
    color: #aaaaaa;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

.sc-commentator .status small i {
    font-size: 0.6rem;
    opacity: 0.8;
}

.sc-commentator .status small strong {
    color: #ffffff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sc-commentator .item {
        flex-direction: column;
        padding: 0.75rem;
    }

    .sc-commentator .user-avatar {
        margin-right: 0;
        margin-bottom: 0.75rem;
        align-self: center;
    }

    .sc-commentator .ml-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .sc-commentator .status {
        text-align: left;
        margin-left: 0;
    }

    .sc-commentator .status small {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .sc-commentator .user-avatar img {
        width: 50px;
        height: 50px;
    }

    .sc-commentator .name {
        font-size: 0.9rem;
    }

    .sc-commentator .ml-item {
        padding: 0.4rem;
    }
}

/* Additional Header for Section (if needed) */
.sc-commentator .box-header {
    background: #1a1a1a;
    padding: 1rem;
    border-bottom: 1px solid #404040;
}

.sc-commentator .box-header h2 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Loading State */
.sc-commentator .loading {
    padding: 2rem;
    text-align: center;
    color: #888888;
}

/* Empty State */
.sc-commentator .no-commentators {
    padding: 2rem;
    text-align: center;
    color: #888888;
    font-style: italic;
}






/* New */
.score-vs {
    text-align: center;
}

.live-state {
    border-color: red;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* wp-content/themes/[your-theme]/css/xemlai.css */


/* Video Row */
.video-row-page {
    width: 100%;
    /* Full width cho trang chá»§ */
    margin-bottom: 20px;
}

/* Box Header */
.box-header-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    margin-bottom: 32px;
    width: 100%;
    background-color: #3B3A41;
    border-radius: 20px;
}

.heading-xl {
    font-size: 22.4px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* Video List */
.video-list-page {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Máº«u gá»‘c dÃ¹ng 4 cá»™t */
    gap: 15px;
}

.video-list.video-list-home {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 cá»™t cho trang chá»§ */
    gap: 16px;
}

/* Match Item */
.item-team-match {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #222;
    overflow: hidden;
    width: 100%;
    /* Äáº£m báº£o full width trong grid */
    box-sizing: border-box;
}

.video-thumb-gen {
    position: relative;
    width: 100%;
    color: #ffffff;
    text-decoration: none;
}

.gen-match-team {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.cover-teams-match {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(10px);
    opacity: 0.7;
    zoom: 2;
}

.team-logo-match img {
    position: relative;
    flex: 1 1;
    width: 200px;
    height: 200px;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(180deg, black 0, transparent);
    mask-image: linear-gradient(180deg, black 0, transparent);
}

.content-team {
    position: relative;
    z-index: 2;
    background-image: linear-gradient(360deg, #000000, rgba(67, 67, 67, 0));
    width: 100%;
}

.first {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 140px;
    column-gap: 20px;
    padding-top: 30px;
}

.team-one.team-home,
.team-one.team-away {
    flex: 1;
}

.team-logo-matchss img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.info-time-match {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 2;
}

.league-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.league-logo {
    width: 40px;
    height: 40px;
    background-color: #00000088;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.league-logo img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.league-name-march {
    position: absolute;
    font-size: 11px;
    color: black;
    background-color: #ffffff;
    padding: 3.2px 9.6px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    border-radius: 16px;
}

.time-xemlai {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.time-xemlai .hour {
    font-size: 16.9px;
    font-weight: 800;
    color: #fff;
}

.time-xemlai .date {
    font-size: 13px;
    text-align: center;
    color: #fff;
}

.second {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
}

.team-name.team-home,
.team-name.team-away {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.info-match {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 15px;
    padding: 10px;
    width: 100%;
}

.video-name {
    width: 100%;
}

.video-name a {
    color: #ffffff;
    font-size: 15.4px;
    text-decoration: none;
}

.video-name a:hover {
    text-decoration: underline;
}

.cmt-match-team {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.cmt-avatar-group {
    margin-right: 10px;
}

.cmt-avatar-group .cmt-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.cmt-name-group a {
    text-decoration: none;
    font-size: 14px;
    color: #ffffff99;
}

.cmt-name-group a:hover {
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Adjustments */
@media screen and (max-width: 1680px) and (min-width: 1500px) {
    .video-list.video-list-home {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

    .video-list-page {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

    .video-row-page {
        width: 100%;
    }
}

@media screen and (max-width: 1500px) and (min-width: 1000px) {
    .video-list.video-list-home {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .video-list-page {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .video-row-page {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) and (min-width: 800px) {
    .video-list-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .video-list.video-list-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .video-row-page {
        width: 100%;
    }

    .league-name-march,
    .time-xemlai,
    .info-time,
    .league-logo {
        display: none;
    }

    .video-name a {
        font-size: 18px;
    }
}

@media screen and (max-width: 800px) and (min-width: 640px) {
    .video-list-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        zoom: 0.9;
    }

    .video-list.video-list-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .video-row-page {
        width: 100%;
    }

    .league-name-march,
    .time-xemlai,
    .info-time,
    .league-logo {
        display: none;
    }

    .video-name a {
        font-size: 18px;
    }

    .item-team-match {
        zoom: 0.9;
    }
}

@media screen and (max-width: 640px) and (min-width: 560px) {
    .video-list-page {
        grid-template-columns: 1fr;
        gap: 16px;
        zoom: 0.9;
    }

    .video-list.video-list-home {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .video-row-page {
        width: 100%;
    }

    .league-name-march,
    .time-xemlai,
    .info-time,
    .league-logo {
        display: none;
    }

    .video-name a {
        font-size: 18px;
    }

    .item-team-match {
        zoom: 0.9;
    }
}

@media screen and (max-width: 560px) and (min-width: 300px) {
    .video-list-page {
        grid-template-columns: 1fr;
        gap: 16px;
        zoom: 0.9;
    }

    .video-list.video-list-home {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .video-row-page {
        width: 100%;
    }

    .league-name-march,
    .time-xemlai,
    .info-time,
    .league-logo {
        display: none;
    }

    .video-name a {
        font-size: 18px;
    }

    .item-team-match {
        zoom: 0.9;
    }
}

.video-row-page .title {
    display: flex;
    justify-content: space-between;
}



/* BXN HomePage */
.chart-wrap {
    overflow: visible;
}

.position-relative {
    width: 100%;
    position: relative;
}

.form-select {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
    padding: 8px 12.8px;
    border-radius: 10px;
    border: 0.5px solid rgba(255, 255, 255, 0.4);
}

.form-select span {
    font-size: 13px;
}

.first {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 140px;
    column-gap: 20px;
    padding-top: 30px;
}

.dropdown-menu {
    position: absolute;
    width: 100%;
    /* max-height: 600px; */
    padding: 15px;
    border-radius: 20px;
    background: #000000;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    overflow: hidden;
    z-index: 3;
    display: none;
}

/* Khi active */
.dropdown-menu.show {
    display: block;
}

.base-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.leagues-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 10px;
    max-height: 550px;
    overflow-y: auto;
}

/* ===== Thanh cuá»™n (scrollbar) ===== */
.leagues-wrap::-webkit-scrollbar {
    width: 6px;
    /* Ä‘á»™ dÃ y thanh cuá»™n */
}

/* ===== Pháº§n track (ná»n cá»§a thanh cuá»™n) ===== */
.leagues-wrap::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    /* mÃ u ná»n track */
    border-radius: 8px;
}

/* ===== Pháº§n thumb (thanh trÆ°á»£t chÃ­nh) ===== */
.leagues-wrap::-webkit-scrollbar-thumb {
    background: #797878;
    border-radius: 8px;
}

/* ===== Khi rÃª chuá»™t vÃ o thumb ===== */
.leagues-wrap::-webkit-scrollbar-thumb:hover {
    background: #797878;
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    column-gap: 10px;
    padding: 6.4px 12.8px;
}

.dropdown-item:first-child {
    background-color: #E2FE3573;
    border-radius: 5px;
}

.dropdown-item.active {
    background-color: #E2FE3573;
    border-radius: 5px;
}

.dropdown-item span {
    font-size: 13px;
}

.dropdown-item .base-icon {
    width: 16px;
    height: 16px;
    object-fit: cover;
}

.dropdown-item .base-icon img {
    width: 16px;
    height: 16px;
    /* object-fit: cover; */
}

/* ---------- */

.container-post {
    display: flex;
    justify-content: center;
}

article {
    max-width: 960px;
}







/* ==== PhÃ¢n trang Xem Láº¡i ==== */
.replay-pagination {
    margin: 40px 0 20px;
    text-align: center;
}

.replay-pagination .pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
}

.replay-pagination .pagination li {
    display: inline-block;
}

.replay-pagination .pagination a {
    display: inline-block;
    padding: 8px 14px;
    background-color: #1e1e1e;
    color: #ddd;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #333;
    transition: all 0.2s ease-in-out;
}

.replay-pagination .pagination a:hover {
    background: linear-gradient(45deg, #e2fe35, #a8c807);
    /* vÃ ng nháº¥n */
    color: #000;
    border-color: linear-gradient(45deg, #e2fe35, #a8c807);
}

.replay-pagination .pagination li.active a {
    background: linear-gradient(45deg, #e2fe35, #a8c807);
    color: #000;
    font-weight: 700;
    border-color: linear-gradient(45deg, #e2fe35, #a8c807);
}

.replay-pagination .pagination li:first-child a,
.replay-pagination .pagination li:last-child a {
    padding: 8px 12px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .replay-pagination .pagination a {
        padding: 6px 10px;
        font-size: 14px;
    }
}



.loading-page {
    position: relative;
    width: 1800px;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-overlay-page {
    position: relative;
    width: 600px;
    max-width: 100%;
    height: 400px;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/background-loading.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.loading-overlay-page .loading-icon-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(18, 18, 21, 0.50) 10%, #121215 50%);
    z-index: 5;
    row-gap: 10px;
}

.loading-overlay-page .loading-icon-page i {
    color: #E2Fe35;
    font-size: 24px;
    width: 25px;
    height: 25px;
    padding: 5px;
}

.loading-overlay {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 200px;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/background-loading.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.loading-overlay .loading-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(47, 63, 80, 0.67) 6%, #2c394a 77%);
    z-index: 5;
    row-gap: 10px;
}

.loading-overlay .loading-icon i {
    color: #E2Fe35;
    font-size: 24px;
    width: 25px;
    height: 25px;
    padding: 5px;
}

.gach {
    width: 50px;
    padding: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.server-cpong .active {
    color: #E2FE35;
    border: 1px solid var(--primary-color);
    padding: .4rem .7rem;
    background: transparent;
    border: 1px solid #E2FE35;
}


.server-cpong {
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: .4rem .7rem;
    background: transparent;
    border: 1px solid #fff;
}

.btn .btn-live .live {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000000;
}

.btn .btn-live .pending {
    background-color: #54535c !important;
    color: #fff9 !important;
    border-color: transparent !important;
}

.matches-container-sport-type.matches-grid .card-match:not(.layout-highlight) .cm-blv {
    right: 20px;
    left: auto;
}

.matches-container-sport-type.matches-grid .card-match:not(.layout-highlight) .cm-blv .blv-name {
    display: none;
}

.matches-container-sport-type.matches-grid .card-match:not(.layout-highlight) .match-buttons {
    display: none;
}

.card-match.layout-highlight .cm-blv .blv-name {
    display: inline;
}

.home-shoutbox .chat-identity {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-shoutbox .chat-identity .identity-header {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: #e2fe35;
    font-weight: 600;
}

.home-shoutbox .chat-identity .identity-header p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: #ddd;
    font-weight: 400;
}

.home-shoutbox .chat-identity .identity-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.home-shoutbox .chat-display-name {
    flex: 1;
    min-width: 200px;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.home-shoutbox .chat-display-name::placeholder {
    color: #888;
}

.home-shoutbox .save-display-name {
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 600;
    background: #e2fe35;
    color: #000;
    cursor: pointer;
    transition: background 0.2s ease;
}

.home-shoutbox .save-display-name:hover {
    background: #d4f025;
}

.home-shoutbox .guest-name-status {
    font-size: 0.85rem;
    color: #999;
}

.home-shoutbox .guest-name-status.error {
    color: #ff6b6b;
}

.home-shoutbox .avatar-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2b2b2b;
    color: #fff;
    font-weight: 600;
}

.home-shoutbox .char-count.warning {
    color: #ff4757 !important;
}

@media (max-width: 768px) {
    .home-shoutbox .chat-identity .identity-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .home-shoutbox .save-display-name {
        width: 100%;
        text-align: center;
    }
}