@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    /* ===== BASE STYLES ===== */
    .ezw-news-live-streams-container {
        font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: #24243e;
        color: #fff;
        min-height: 100vh;
    }

    .ezw-news-live-streams-container-inner-padding {
        padding: 1rem;
    }

    .ezw-news-live-streams-inner {
        max-inline-size: 1200px;
        margin-inline: auto;
    }

    /* ===== LOADING STATES ===== */
    .fireline-loading .ezw-news-live-streams-inner {
        opacity: 0.5;
        pointer-events: none;
    }

    .fireline-loading .ezw-news-live-streams-loader {
        display: flex;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 0.5rem;
        z-index: 1000;
    }

    .fireline-loading .ezw-news-live-streams-loader .dot {
        width: 15px;
        height: 15px;
        background: #ff8c00;
        border-radius: 50%;
        animation: fireline-loader 1.5s infinite;
    }

    .fireline-loading .ezw-news-live-streams-loader .dot:nth-child(2) {
        animation-delay: 0.3s;
    }

    .fireline-loading .ezw-news-live-streams-loader .dot:nth-child(3) {
        animation-delay: 0.6s;
    }

    .ezw-news-live-streams-container .loading-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .ezw-news-live-streams-container .spinner {
        width: 50px;
        height: 50px;
        border: 4px solid rgba(255, 255, 255, 0.3);
        border-top-color: #ff8c00;
        border-radius: 50%;
        animation: ezw-news-live-streams-spin 1s linear infinite;
    }

    /* ===== HEADER ===== */
    .ezw-news-live-streams-container .header {
        max-width: 1400px;
        margin: 0 auto 2rem;
        text-align: center;
    }

    .ezw-news-live-streams-container .header h1 {
        font-size: 2.5rem;
        background: linear-gradient(90deg, #ff8c00, #ff6b00);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .ezw-news-live-streams-container .header p {
        font-size: 1.1rem;
        opacity: 0.8;
    }

    /* ===== TABS ===== */
    .ezw-news-live-streams-container .tabs-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto 2rem;
    }

    .ezw-news-live-streams-container .tabs {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        padding: 0.5rem;
        margin: 0 2.5rem;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 10px;
        max-width: 1400px;
        /* flex: 1; */
        /* grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); */
        grid-template-rows: 1fr;
        grid-auto-flow: column;
        white-space: nowrap;
    }

    .ezw-news-live-streams-container .tabs::-webkit-scrollbar {
        display: none;
    }

    .ezw-news-live-streams-container .tabs img,
    .ezw-news-live-streams-container .tabs a {
        aspect-ratio: 1;
    }

    .ezw-news-live-streams-container .tab img {
        border-radius: 6px;
        transition: transform 350ms linear;
    }

    .ezw-news-live-streams-container .tab:hover img {
        transform: scale(1.05);
    }

    .ezw-news-live-streams-container .tabs a {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: #000;
        flex: 1;
        padding: 8px 12px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        text-align: center;
        font-weight: 600;
        font-size: 14px;
        white-space: nowrap;
        border-bottom: 3px solid transparent;
        width: 100px;
        height: 100px;
        aspect-ratio: 1;
    }

    .ezw-news-live-streams-container .tab:first-child,
    .ezw-news-live-streams-container .tab:first-child:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #ff8a00;
        border: 3px solid transparent;
    }

    .ezw-news-live-streams-container .tab.active {
        color: #ff8c00;
        background: #fff;
        border-bottom: 3px solid #ff8a00;
    }

    .ezw-news-live-streams-container .tab.active:first-child {
        border-bottom: 3px solid #ff8a00;
    }

    /* ===== SCROLL BUTTONS ===== */
    .scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        cursor: pointer;
        z-index: 10;
        padding: 0.5rem;
        transition: opacity 0.3s;
        aspect-ratio: 1;
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 13px;
        background: #fff;
        color: #000;
        border-radius: 50%;
    }

    .scroll-btn.left {
        left: 5px;
    }

    .scroll-btn.right {
        right: 5px;
    }

    .scroll-btn.scroll-btn-disabled {
        pointer-events: none;
        opacity: 0.3;
    }

    /* ===== PLAYERS CONTAINER ===== */
    .ezw-news-live-streams-container .players-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        gap: 2rem;
    }

    .ezw-news-live-streams-container .players-container.is-all {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .ezw-news-live-streams-container .players-container.is-all .schedule-link,
    .ezw-news-live-streams-container .players-container.is-all .website-link {
        display: none;
    }

    .ezw-news-live-streams-container .players-container.is-all .player-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(17, 16, 16, 0);
        z-index: 5;
    }

    .ezw-news-live-streams-container .main-player {
        grid-column: 1 / -1;
    }

    .ezw-news-live-streams-container .secondary-players {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 2rem;
    }

    /* ===== PLAYER CARD ===== */
    .ezw-news-live-streams-container .player-card {
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 15px;
        overflow: hidden;
        cursor: pointer;
        animation: WMfadeInUp 0.5s ease forwards;
    }

    .ezw-news-live-streams-container .player-header {
        background: rgba(0, 0, 0, 0.8);
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 2px solid rgba(255, 140, 0, 0.3);
    }

    .ezw-news-live-streams-container .player-title {
        font-size: 1.3rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .ezw-news-live-streams-container .player-badge {
        background: #ff0000;
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.75rem;
        font-weight: bold;
        animation: pulse 2s infinite;
    }

    .ezw-news-live-streams-container .player-badge.vod {
        background: #ff8c00;
        animation: none;
    }

    .ezw-news-live-streams-container .viewer-count {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        opacity: 0.9;
    }

    .ezw-news-live-streams-container .player-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        background: #000;
        overflow: hidden;
    }

    .ezw-news-live-streams-container .player-wrapper img {
        display: none;
    }
    .ezw-news-live-streams-container .player-wrapper .ezw-custom-play-btn {
        display: none;
    }
    .ezw-news-live-streams-container .is-all .player-wrapper img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        transform: translate(-50%, -50%);
        display: block;
    }
    .ezw-news-live-streams-container .is-all .ezw-custom-play-btn {
        /**
        * playbutton like fluid player
        */
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #ff1a1a;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
        z-index: 10;
        display: block;
    }
    .ezw-news-live-streams-container .is-all .ezw-custom-play-btn .play-button-tri {
        margin-top: 15px;
        margin-left: 23px;
        border-style: solid;
        border-width: 15px 0 15px 21px;
        border-color: transparent transparent transparent #ffffff;

    }

    .ezw-news-live-streams-container .player-wrapper:hover .fullscreen-btn {
        opacity: 1;
        pointer-events: auto;
    }

    .ezw-news-live-streams-container .player-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    .ezw-news-live-streams-container .player-info {
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
    }

    .ezw-news-live-streams-container .player-description {
        font-size: 0.95rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0;
    }

    .ezw-news-live-streams-container .player-info .links-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: end;
        column-gap: 4px;
        row-gap: 8px;
    }

    .ezw-news-live-streams-container .player-info .website-link,
    .ezw-news-live-streams-container .player-info .schedule-link {
        padding: 10px 0;
    }

    .ezw-news-live-streams-container .player-info .schedule-link a {
        background: rgb(255 0 0 / 10%);
    }

    .ezw-news-live-streams-container .player-stats {
        display: flex;
        gap: 1.5rem;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        flex-wrap: wrap;
    }

    /* ===== ACTION BUTTONS ===== */
    .ezw-news-live-streams-container .action-buttons {
        display: flex;
        gap: 0.8rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .ezw-news-live-streams-container .action-btn {
        padding: 0.4rem 1.2rem;
        border-radius: 20px;
        border: 1px solid rgba(255, 140, 0, 0.5);
        background: rgba(255, 140, 0, 0.1);
        color: #ff8c00;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 600;
        font-size: 0.85rem;
    }

    .ezw-news-live-streams-container .action-btn:hover {
        background: rgba(255, 140, 0, 0.9);
        color: white;
        transform: translateY(-2px);
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fireline-loader {
        0%, 100% {
            transform: translateY(0);
            opacity: 1;
        }
        50% {
            transform: translateY(-15px);
            opacity: 0.5;
        }
    }

    @keyframes WMfadeInUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse {
        0%, 100% { 
            opacity: 1; 
        }
        50% { 
            opacity: 0.7; 
        }
    }

    @keyframes ezw-news-live-streams-spin {
        to { 
            transform: rotate(360deg); 
        }
    }

    /* ===== MEDIA QUERIES ===== */
    @media (max-width: 768px) {
        .ezw-news-live-streams-container .secondary-players {
            grid-template-columns: 1fr;
        }

        .ezw-news-live-streams-container .header h1 {
            font-size: 1.8rem;
        }
        .ezw-news-live-streams-container .player-title {
            font-size: 14px;
        }

        .ezw-news-live-streams-container .action-buttons {
            justify-content: center;
        }
        .ezw-news-live-streams-container .player-description {
            font-size: 10px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0;
        }
        .ezw-news-live-streams-container .player-badge {
            font-size: 8px;
            padding: 2px 10px;
        }
        .ezw-news-live-streams-container .player-info {
            padding: 14px;
         }
    }

    @media (max-width: 500px) {
        .ezw-news-live-streams-container .players-container.is-all {
            grid-template-columns: 1fr;
        }
    }