/*
 Theme Name: ColaTV
 Theme URI: https://colatv.io
 Author: Your Name
 Author URI: https://yourwebsite.com
 Description: A WordPress theme for ColaTV, a live sports streaming platform.
 Version: 1.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: colatv
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: rgba(0,0,0,1);
    color: #fff;
    min-height: 100vh;
}

main{
    max-width: 1300px;
    margin: 0 auto;
}

img{
    max-width: 100%;
}

a{
    text-decoration: none;
    color: unset;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.header {
    background: rgba(29, 29, 39, 1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 250px;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b35;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 45px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn img {
    width: 18px;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.btn-secondary {
    background: none;
    color: white;
    border: 1px solid rgba(255, 153, 59, 1);
    color: rgba(255, 153, 59, 1);
    font-weight: bold;
    font-size: 14px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.nav-tabs {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
}

.nav-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    background: rgba(29, 29, 39, 1);
    padding: 15px;
    border-radius: 10px;
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.nav-tab.active {
    background: rgba(255, 153, 59, 1);
}

.nav-tab:hover {
    background: rgba(255, 107, 53, 0.8);
}

.hero {
    position: relative;
    overflow: hidden;
    max-width: 1300px;
    margin: auto;
    width: 100%;
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}

.sports-nav {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
}

.sports-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(29, 29, 39, 1);
    border-radius: 10px;
}

.sports-tabs {
    display: flex;
    gap: 20px;
}

.sports-tab {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sports-tab.active {
    background: #ff993b;
}

.view-all {
    color: #ff6b35;
    text-decoration: none;
    font-weight: bold;
}

.matches-section {
    padding: 15px 0;
    max-width: 1300px;
    margin: 0 auto;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.match-card {
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: #1D1D27;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.league-name {
    padding: 4px 12px;
    font-size: 13px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
    display: inline-block;
}

.match-time {
    color: #ffeac2;
    text-align: center;
    font-size: 13px;
    line-height: 20px;
    border-radius: 13px;
    padding: 1px 8px;
    background: linear-gradient(#1a1e23, #1a1e23) padding-box, linear-gradient(180deg, #1a1e23 0%, #a43d01 100%) border-box;
    border: 1px solid transparent;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    white-space: nowrap;
    gap: 10px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.team-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    overflow: hidden;
}

.team-logo img{
    object-fit: contain;
}

.team-name {
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 95px;
    display: inline-block;
}

.match-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.score {
    font-size: 28px;
    color: #fff;
}

.match-status {
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 400;
}

.status-live {
    background: #00AF2B;
    color: white;
    font-size: 18px;
}

.status-scheduled {
    background: #f37a0c;
    color: white;
    font-size: 18px;
}

.status-finished {
    background: #666;
    color: white;
}

.match-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.sponsors a{
    font-size: 12px;
    color: #A9B5D0;
    text-decoration: none;
}

.bet-button {
    border: none;
    cursor: pointer;
    color: #FF993B;
    font-size: 13px;
    background: #ffffff00;
    text-transform: uppercase;
}

.load-more {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #ff6b35;
}

.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 0;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-sections {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
}

.footer-section h3 {
    color: #ff6b35;
    margin-bottom: 15px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-bottom {
    text-align: left;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

.footer-1 {
    background-color: rgba(38,40,50,1);
    padding: 30px 0;
}

.footer-1 .footer-sections {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-2 {
    background-color: rgba(29,29,39,1);
}

.footer-logo img {
    max-width: 200px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(50, 53, 63, 1);
    border-radius: 5px;
    padding: 10px;
}

.social-icons a img {
    width: 100%;
}

.footer-1 .content {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.footer-1 .content .card {
    position: relative;
    width: 100%;
}

.footer-1 .content .card > img {
    width: 100%;
    border-radius: 15px;
}

.footer-1 .content .card .box-title {
    width: 123px;
    color: rgba(255, 255, 255, 1);
    position: absolute;
    top: 15px;
    left: 16px;
    font-family: Mulish;
    font-weight: bold;
    font-size: 20px;
    opacity: 1;
    text-align: left;
}

.footer-link {
    color: rgba(255, 255, 255, 1);
    position: absolute;
    top: 5.5em;
    left: 16px;
    font-size: 18px;
    opacity: 1;
    text-align: left;
    display: flex;
    gap: 10px;
    text-decoration: none;
}

.footer-link img {
    width: 22px;
    height: 22px;
}

.slick-dots li {
    width: unset;
    height: unset;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 44px;
    height: 3px;
    cursor: pointer;
    color: #ffffff;
    padding: 0;
    background: rgba(169,181,208,1);
}

.slick-dots {
    bottom: 20px;
    left: 20px;
    width: fit-content;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
    display: none;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

.slick-dots li.slick-active button {
    background-color: #fff;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-dotted.slick-slider {
    margin: 0;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .nav-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .sports-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .sports-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-1 .footer-sections {
        flex-direction: column;
    }
    
    .footer-1 .content {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
}
.rows{
    display: flex;
    gap: 20px;
}

  .archive-container {
        width: calc(100% - 330px);
    }

    .breadcrumb {
        color: #ccc;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .breadcrumb a {
        color: #ccc;
        text-decoration: none;
    }

    .breadcrumb a:hover {
        color: #fff;
    }

    .tab {
        padding: 8px 20px;
        background-color: #333;
        color: #fff;
        text-decoration: none;
        border-radius: 20px;
        font-size: 14px;
        transition: background-color 0.3s ease;
    }

    .tab.active {
        background-color: #ff6b35;
    }

    .tab:hover {
        background-color: #444;
    }

    .tab.active:hover {
        background-color: #ff6b35;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .photo-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .photo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .photo-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .photo-info {
        padding: 15px;
    }

    .photo-stats {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
        font-size: 12px;
        color: #999;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .photo-title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 8px;
        color: #fff;
    }

    .photo-title a {
        color: #fff;
        text-decoration: none;
    }

    .photo-title a:hover {
        color: #ff6b35;
    }

    .photo-description {
        font-size: 14px;
        color: #ccc;
        line-height: 1.5;
    }

    .sidebar-widget {
        right: 20px;
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 15px;
        width: 330px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .sidebar-widget h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #ff6b35;
    }

    .sidebar-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }

    .sidebar-item:last-child {
        border-bottom: none;
    }

    .sidebar-item img {
        width: 50px;
        height: 50px;
        border-radius: 5px;
        object-fit: cover;
    }

    .sidebar-text {
        flex: 1;
        font-size: 12px;
        color: #ccc;
    }

    .sidebar-text a {
        color: #ccc;
        text-decoration: none;
    }

    .sidebar-text a:hover {
        color: #ff6b35;
    }

    .wp-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 40px;
    }

    .wp-pagination a,
    .wp-pagination span {
        padding: 8px 12px;
        background-color: #333;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .wp-pagination a:hover {
        background-color: #555;
    }

    .wp-pagination .current {
        background-color: #ff6b35;
    }

    .wp-pagination .dots {
        color: #666;
        background: none;
    }

    .no-posts {
        text-align: center;
        color: #ccc;
        padding: 40px;
    }

    @media (max-width: 1024px) {
        .sidebar-widget {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .gallery-grid {
            grid-template-columns: 1fr;
        }
        
        .filter-tabs {
            flex-wrap: wrap;
        }
        
        .archive-container {
            padding: 10px;
        }
    }
    
.single-container {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        gap: 30px;
    }

    .main-content {
        flex: 1;
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 30px;
    }

    .post-header {
        margin-bottom: 30px;
    }

    .post-title {
        font-size: 28px;
        font-weight: bold;
        color: #fff;
        margin-bottom: 15px;
        line-height: 1.3;
    }

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

    .meta-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .featured-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    .post-content {
        color: #ccc;
        line-height: 1.8;
        font-size: 16px;
    }

    .post-content p {
        margin-bottom: 20px;
    }

    .post-content h2,
    .post-content h3,
    .post-content h4 {
        color: #fff;
        margin: 25px 0 15px 0;
    }

    .post-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px 0;
    }

    .post-tags {
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #333;
    }

    .post-tags h4 {
        color: #ff6b35;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .tag-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .tag-item {
        background-color: #333;
        color: #ccc;
        padding: 5px 12px;
        border-radius: 15px;
        font-size: 12px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .tag-item:hover {
        background-color: #ff6b35;
        color: #fff;
    }

    .related-posts {
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid #333;
    }

    .related-posts h3 {
        color: #ff6b35;
        margin-bottom: 20px;
        font-size: 20px;
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .related-item {
        background-color: #333;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease;
    }

    .related-item:hover {
        transform: translateY(-3px);
    }

    .related-item img {
        width: 100%;
        height: 120px;
        object-fit: cover;
    }

    .related-info {
        padding: 15px;
    }

    .related-title {
        font-size: 14px;
        color: #fff;
        margin-bottom: 8px;
    }

    .related-title a {
        color: #fff;
        text-decoration: none;
    }

    .related-title a:hover {
        color: #ff6b35;
    }

    .related-date {
        font-size: 12px;
        color: #999;
    }

    .sidebar-single {
        width: 300px;
        flex-shrink: 0;
    }

    .widget-box {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .widget-title {
        color: #ff6b35;
        font-size: 18px;
        margin-bottom: 15px;
        border-bottom: 2px solid #ff6b35;
        padding-bottom: 8px;
    }

    .widget-list {
        list-style: none;
    }

    .widget-list li {
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }

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

    .widget-list a {
        color: #ccc;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .widget-list a:hover {
        color: #ff6b35;
    }

    .post-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #333;
    }

    .nav-link {
        background-color: #333;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease;
        font-size: 14px;
    }

    .nav-link:hover {
        background-color: #ff6b35;
    }

    .nav-link.disabled {
        background-color: #222;
        color: #666;
        cursor: not-allowed;
    }

    .tabbed-widget {
        width: 100%;
    }

    .tab-buttons {
        display: flex;
        background-color: #333;
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .tab-btn {
        flex: 1;
        padding: 10px 15px;
        background-color: #333;
        color: #ccc;
        border: none;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        border-right: 1px solid #444;
    }

    .tab-btn:last-child {
        border-right: none;
    }

    .tab-btn:hover {
        background-color: #444;
        color: #fff;
    }

    .tab-btn.active {
        background-color: #ff6b35;
        color: #fff;
    }

    .tab-content {
        position: relative;
    }

    .tab-pane {
        display: none;
        animation: fadeIn 0.3s ease-in-out;
    }

    .tab-pane.active {
        display: block;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
        .single-container {
            flex-direction: column;
            padding: 10px;
        }

        .sidebar-single {
            width: 100%;
        }

        .main-content {
            padding: 20px;
        }

        .post-title {
            font-size: 24px;
        }

        .post-meta {
            gap: 15px;
        }

        .featured-image {
            height: 250px;
        }
    }
    .menu-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}
.menu-item.nav-tab a {
    display: flex;
    align-items: center;
}

.match-teams .team {
    flex: 1 1 40%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    div.logo {
        max-width: 130px;
    }
    
    .footer-sections {
        display: flex;
        flex-direction: column;
    }
    
    .fs-1 {
        text-align: center;
    }
    
    #menu-menu-chinh.nav-content {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        gap: 10px;
        scroll-behavior: smooth;
        padding: 8px;
    }
    
    #menu-menu-chinh.nav-content .menu-item {
        flex: 0 0 auto;                 /* Không co lại, không dãn ra, giữ kích thước gốc */
        font-size: 13px;
    }
    
    .sports-content {
        overflow-x: auto;
        width: 100%;
    }
    
    .sports-tabs {
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        gap: 10px;
        min-width: max-content;
    }
    
    .sports-tab {
        gap: 3px;
        padding: 8px 8px;
        font-size: 15px;
    }
    
    img.menu-icon {
        max-width: 15px;
        max-height: 15px;
    }
    
    .sports-nav {
        padding: 15px 0 0 0;
        margin: 0 8px;
    }
    
    .matches-grid {
        margin: 0 8px;
    }
    
    .match-time {
        font-size: 12px;
    }
    
    .league-name {
        max-width: 220px;
    }
    
    .btn {
        padding: 4px 6px;
        gap: 5px;
        font-size: 12px !important;
        height: 35px;
        gap: 5px;
    }
    
    .header-buttons {
        gap: 6px;
    }
    
    .btn img {
        display: none;
    }
    
    .bet-button {
        font-size: 13px;
    }
    
    .nav-tabs {
        padding: 8px 0;
    
    }
    
    .hero-banner {
        height: 100px !important;
        padding: 40px 20px !important;
    }
    
    .hero-banner__content {
        max-width: 60% !important;
    }
    
    .hero-banner__content h1 {
        font-size: 1rem !important;
        text-align: left;
    }

}

    .card {
    max-width: 400px;
    }

    .copyright {
        text-align: center;
        margin-top: 10px;
    }
    
    .footer-nap {
        flex-direction: column;
    }
    
        .copy-right {
        text-align: center;
    }


/* Content Navigation Section */
.content-nav {
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.content-nav__container {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px 30px 0px 30px;
    margin-top: 2rem;
    max-height: 800px !important;
    overflow-y: auto;
    border: solid 2px #2b2b2b;
      display: flex;
  gap: 20px;
  max-height: 800px;
}

.content-nav__lists {
  margin-bottom: 30px;
    flex: 1; /* 33% */
}

.content-nav__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content-nav__content {
    flex: 2;
}

.content-nav__item {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.21;
  transition: color 0.3s;
}

.content-nav__item:hover {
  color: var(--color-primary);
}

.content-nav__text {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

.content-nav__divider {
  width: 100%;
  height: 1px;
  border-top: 1px dashed #676161;
  margin: 10px 0;
}

.content-nav__container::-webkit-scrollbar {
  width: 6px;
}

.content-nav__container::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: rgba(255, 126, 7, 10%);
}

.content-nav__container::-webkit-scrollbar-thumb {
  width: 8px;
  border-radius: 8px;
  background-color: var(--color-primary);
}

@media (max-width: 992px) {
  .content-nav__lists {
    flex-direction: column;
    gap: 20px;
  }
}

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

  .content-nav__lists {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .content-nav__container {
    padding: 15px;
    flex-direction: column;
    margin: 0 8px;
    height: 600px;
    
  }
  

  .content-nav__item,
  .content-nav__text {
    font-size: 13px;
  }
}

.hero-banner {
  background: url('/wp-content/uploads/2025/07/banner_colatv.png') no-repeat center right;
  background-size: cover;
  padding: 60px 40px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 10 / 2;
    width: 100%;
    height: auto;
}

.hero-banner__content {
  max-width: 50%;
}

.hero-banner__content h1 {
    font-size: clamp(20px, 2.5vw, 36px);
    text-align: left;
}

.link-match {
    position: absolute;
    top: 0;
    width: 100%;
    height: 75%;
    left: 0;
}

.link-card {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}

.status-full-text {
    font-size: 0.8rem;
    margin: 2%;
}

.status-full-scheduled {
    color: #f37a0c;
}

.status-full-live {
    color: #00AF2B;
}

/*bottom menu*/
.fixed-bottom-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 9999;
  border-top: 1px solid #333;
}

.fixed-bottom-menu .menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ccc;
  font-size: 12px;
  text-transform: uppercase;
  flex: 1;
  border-right: solid 1px #fff;
}

.fixed-bottom-menu .menu-item img {
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
}

.fixed-bottom-menu .menu-item.active {
  color: #f9a825; /* vàng */
}