.google-auto-placed {
    max-width: 100%;
    overflow: hidden !important;
}
ins.adsbygoogle[data-ad-status="unfilled"] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}
:root {
    --orange:#FFCC00;
    --red:#e61601;
    --white:#fff;
    --light-white:#f0f0f0;
    --grey:	#696969;
    --light-grey:#D3D3D3;
    --black:#000;
    --blue: #007BFF;
    --green:#0f853c;
    --purple:#7B0099;
}

[data-theme="dark"]{
    color-scheme: dark;
}
[data-theme="light"] {
    color-scheme: light;
}
body {
    width: 100%;
    height:100%;
    margin: 0;
    padding: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='58' viewBox='0 0 42 58'%3E%3Cg fill='%23dddcdd' fill-opacity='0.23'%3E%3Cpath fill-rule='evenodd' d='M12 18h12v18h6v4H18V22h-6v-4zm-6-2v-4H0V0h36v6h6v36h-6v4h6v12H6v-6H0V16h6zM34 2H2v8h24v24h8V2zM6 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm8 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm8 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm8 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm0 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4zM2 50h32v-8H10V18H2v32zm28-6a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-8 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-8 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-8 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm0-8a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm0-8a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm0-8a2 2 0 1 0 0 4 2 2 0 0 0 0-4z'/%3E%3C/g%3E%3C/svg%3E");
    background-color: light-dark(var(--light-white),var(--black));
    font-size: 18px;
    font-family: var(--primary-font-name), sans-serif;
}

img {
    max-width: 100%;
    font-style: italic;
    color: light-dark(var(--black),var(--white));
}
video , iframe {
    max-width: 100%;
}
h1 {
    font-size: 2rem;
}

.fb-like {
    width: fit-content;
    max-width: calc(100% - 20px);
    margin: 10px;
    overflow: hidden;
    background-color: wheat;
    font-size: 15px;
    display: none;
}

.single-tv-metadata .fb-like {
    margin: 0;
}


/* calendar box  */
.calender-box {
    width: 50px;
    padding: 5px;
    height: fit-content;
    border-radius: 5px;
    position: fixed;
    top: 160px;
    right: 0;
    background-color: light-dark(var(--green),var(--blue));
    color: var(--white);
    z-index: 11000;
    border-radius: 2px;
    border: 4px solid var(--orange);
    font-size: 0.8rem;
    font-weight: 600;
    overflow: hidden;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    display: flex;
    gap: 5px;
    flex-direction: column;
}
.calender-box div {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.calender-box .day {
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
}
.calender-box .month {
    font-weight: 550;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.calender-box .year {
    font-weight: 700;
    font-size: 1.5rem;
}


@media (max-height:300px) and (orientation:landscape) {
    .calender-box {
        display: none;
    }
}
@media (max-width:1024px) {
    .calender-box {
        display: none;
    }
}


/* embed video dialog box  */
@media (max-width:1014px) {
    .channel-name-social-media .social-icons li:has(.embed-icon){
        display: none !important;
    } 
}
#embedVideoContainer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: light-dark(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 999;
    font-size: 1.4rem;
    overflow: hidden;
}
#EmbedSupportMessage {
    width: clamp(150px, 70% , 90%);
    height: clamp(450px, 70% , 90%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: light-dark( var(--white),rgba(0, 0, 0, 0.7));
    color: light-dark(var(--black),var(--white));
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#EmbedSupportMessage p {
    margin: 10px 0;
}

.embed-code-container {
    width: 100%;
    position: relative;
    background-color: light-dark( var(--light-white),rgba(0, 0, 0, 0.7));
    color: light-dark(var(--black),var(--white));
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: auto;
    padding: 10px;
    margin: 10px 0;
    word-wrap: break-word;

}
.embed-code-container .copy-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--green);
    color: var(--white);
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 0 0 0 10px;
}
.embed-code-container .copy-btn::after {
    content: 'Copy';
    margin-left: 5px;
}

#hideEmbedContainer {
    margin-top: 10px;
    background-color: var(--orange);
    color: var(--black);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
}

/* ad blocker styles */
#adBlockerContainer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: light-dark( rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 9999;
    font-size: 1.4rem;
    cursor: wait;
    overflow: hidden;
}

#anti-js-detector {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: light-dark( var(--light-white),rgba(0, 0, 0, 0.7));
    z-index: 10000;
    font-size: 1.4rem;
    cursor: wait;
    overflow: hidden;
}

#adBlockerSupportMessage {
    width: clamp(150px, 50% , 600px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: light-dark(var(--white),var(--black));
    color: light-dark(var(--black),var(--white));
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#hideAdBlockerMessage {
    background-color: var(--orange);
    color: var(--black);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.25rem;
}

#hideAdBlockerMessage:hover {
    background-color: var(--green);
    color: var(--white);
}


@media (max-width:768px) {
    #adBlockerContainer {
        font-size: 1rem;
    }
    #adBlockerSupportMessage {
        width: clamp(150px, 80% , 600px);
        height: fit-content;
    }
}

@media (max-width:600px) {
    #adBlockerSupportMessage {
        height: fit-content;
    }
}


/* cookie consent  */
.cookie-banner {
    /* width: 100%; */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: light-dark(var(--white),var(--black));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 999999999999999999999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    overflow: auto;
    display: none;
}
.cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--green),var(--red),var(--black) , blue ,var(--orange));
}

.cookie-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    overflow: hidden;
}
.cookie-text {
    max-width: 80%;
    width: fit-content;
    font-size: 16px;
    color: light-dark(var(--black),var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-text a {
    color: light-dark(var(--red),var(--red));
    font-weight: bold;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.accept-btn {
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: var(--green);
    color: var(--white);
    width: fit-content;
    height: fit-content;
}

.accept-btn:hover {
    background-color: var(--orange);
    color: var(--black);
}
@media (max-width:768px) {
    .cookie-content {
        width: 100%;
    }
    .cookie-text {
        max-width: 100%;
    }
}
@media (max-width:400px) {
    .cookie-banner {
        padding: 15px 15px;
    }
    .cookie-content {
        width: 100%;
        gap: 10px;
    }
    .cookie-buttons {
        margin-left: auto;
    }
}
@media (max-width:350px) {
    .cookie-banner {
        padding: 10px 10px;
    }
    .cookie-content {
        width: 100%;
        flex-wrap: wrap;
    }
}



/* network state detector  */

.status-message {
    display: none;
    background-color: var(--red);
    color: var(--white);
    text-align: center;
    font-weight: 560;
    padding: 10px;
    border-radius: 5px;
    width: fit-content;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 600;
}

#online-message {
    background-color: var(--green);

    & i {
        margin-right: 5px;
    }
}

@media (max-width:768px) {
    .status-message {
        padding: 10px 20px;
        white-space: nowrap;
    }
}


#firstM3u8Div a, #lastM3u8Div a, .m3u8 , #firstUrlDivId, #lastUrlDivId , #copyFirstButtonId , .nobreak , #myM3u8LayerId , #myM3u8LayerId div{
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -9999999999;
}

#m3u8CopyButtonId , .unselectable , #sliders , #myM3U8Div , .cssbutton , .overlayDiv , #m3u8Layer , #popupBodyId{
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -9999999999;
}

/* tv schedule list  */
.tv-schedule-list-container {
    width: 100%;
    background-color: light-dark(var(--white),var(--black));
    color: light-dark(var(--black),var(--white));
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
}
.tv-schedule-list-container .schedule-title {
    width: 100%;
    font-weight: 620;
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tv-schedule-list-container .schedule-list {
    width: 100%;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    overflow: auto;
    gap: 15px;
    padding-right:10px;
    padding-bottom: 10px;
    max-height: 450px;
    scroll-behavior: smooth;
}
@media (max-width:400px) {
    .tv-schedule-list-container {
        border-radius: none;
    }
    .tv-schedule-list-container .schedule-list {
        grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
        gap: 10px;
        max-height: 350px;
    }
}
@media (max-width:300px) {
    .tv-schedule-list-container .schedule-list {
        grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
        max-height: 250px;
    }
}

.tv-schedule-list-container .schedule-item {
    background-color: light-dark(var(--white),var(--black));
    color: light-dark(var(--black),var(--white));
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px light-dark(rgba(0, 0, 0, 0.1),var(--light-grey));
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}


.schedule-item.active {
    background-color: var(--light-white);
    border-left: 5px solid var(--green); 
}
.schedule-item.active .show-name{
    color: light-dark(var(--black),var(--black));
}
.schedule-item.active .progress-bar-container .show-notification-toggle{
    color: light-dark(var(--black),var(--black));
}

.schedule-item .show-name {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.schedule-item .time {
    width: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.9rem;
    color: var(--grey);
    letter-spacing: 1px;
}

.schedule-item .progress-bar-container {
    margin-top: 10px;
    background-color: var(--light-grey);
    color: light-dark(var(--black),var(--white));
    border-radius: 5px;
    height: 10px;
    position: relative;
}
.schedule-item .progress-bar-container .show-notification-toggle {
    position: absolute;
    top: -40px;
    right: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
    z-index: 4;
}

.schedule-item .progress-bar {
    background-color: var(--red);
    height: 100%;
    width: 0%; 
    border-radius: 5px;
}

.schedule-item.active .progress-bar {
    transition: width 1s ease-in-out;
}

/* user profile account */
.user-login-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 9999;
    font-size: 1.4rem;
    overflow: hidden;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.user-login-container form {
    width: clamp(250px, 90%, 350px);
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 2px var(--light-grey);
    background-color: var(--black);
    color: var(--white);
    align-items: center;
    justify-content: center;
}

.user-login-container .login-options {
    width: clamp(250px, 90%, 350px);
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 10px 0 20px;
}
.user-login-container .login-options button{
    width: fit-content;
    height: fit-content;
    padding: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 520;
    border-radius: 5px;
    letter-spacing: 1px;
    background-color: var(--red);
    color: var(--white);
}
.user-login-container .login-options button:first-child {
    background-color: var(--green);
    color: var(--black);
}
.user-login-container #math-form p{
    margin-bottom: 10px;
}
.user-login-container #math-form input , .user-login-container #email-form input{
    margin-bottom: 10px;
}

.user-login-container .login-message {
    width: clamp(250px, 90%, 350px);
    font-weight: 500;
    font-size: clamp(0.9rem,1.3rem,4rem);
    text-align: center;
    margin-bottom: 10px;
    color: var(--white);
    display: grid;
    gap: 5px;
}

.user-login-container .input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.user-login-container .input-group label {
    font-size: 1rem;
    font-weight: bold;
    color: var(--light-grey);
    width: 100%;
}

.user-login-container .input-group input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 3px;
    border: 1px solid var(--light-grey);
    background-color: var(--dark-grey);
    color: var(--white);
}

.user-login-container .input-group input:focus {
    outline: none;
    border-color: var(--orange);
}

.user-login-container .input-group button {
    width: 100%;
    padding: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
    background-color: var(--orange);
    color: var(--black);
    border: none;
    transition: background-color 0.3s ease-in-out;
}

.user-login-container .input-group button:hover {
    outline: 2px solid var(--orange);
    background-color: var(--black);
    color: var(--white);
}

.user-login-container .input-group .error-message {
    font-size: 0.9rem;
    color: var(--red);
    margin-top: 5px;
}

.user-login-container .timer-message {
    font-size: 1rem;
    color: var(--orange);
    text-align: center;
    margin-top: 15px;
}


/* // notification container for all the pages  */
.notification-container {
    position: relative;
}

.bell-icon {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 5px;
}
.bell-icon i{
    position: relative;
    width: fit-content;
    height: fit-content;
}
@media (max-width:768px) {
    .bell-icon {
        margin-left: 10px;
    }
}
.bell-icon i:hover{
    transform: scale(1);
}
.bell-icon i::after {
    content: attr(data-notification-count);
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    top: -7px;
    right: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    letter-spacing: .5px;
    background-color: var(--red);
    color: var(--white);
    font-size: 0.6rem !important;
    padding: 5px;
    border-radius: 50%;
}

.notification-dropdown {
    position: absolute;
    top: 110px;
    right: 70px;
    width: clamp(min(100%,250px),calc(100% - 40px),min(100%,320px));
    max-height: clamp(100px, calc(5vw + 50vh), 70vh);
    max-height: clamp(100px, calc(5dvw + 50dvh), 70dvh);
    overflow: auto;
    background-color: light-dark(var(--white),var(--black));
    border: 1px solid var(--grey);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 6000;
    scroll-behavior: smooth;
}
@media (max-width:768px) {
    .notification-dropdown {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
}
@media (max-width:400px) {
    .notification-dropdown {
        width: calc(100% - 20px);
        right: 10px;
        left: 10px;
    }
}

.notification-dropdown.active {
    display: block;
}

.notification-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid var(--light-grey);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.notification-item:hover {
    background-color: light-dark(var(--light-white),var(--black));
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item .notification-icon {
    width: 60px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    align-self: fkex-start;
}
.notification-item .notification-icon img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;left: 0;
}

.notification-details {
    width: calc(100% - 70px);
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    overflow: hidden;
}
.notification-details:nth-child(2) {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    overflow: hidden;
}

.notification-details .notification-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 580;
    color: light-dark(#333, var(--white));
}

.notification-details .notification-meta {
    margin: 0;
    font-size: 12px;
    color: light-dark(#666, var(--white));
}

.notification-details .progress-bar {
    height: 5px;
    width: 100%;
    background-color: var(--light-grey);
    border-radius: 4px;
    position: relative;
    margin-top: 5px;
}
.notification-details .progress-bar .show-type-label {
    position: absolute;
    right: 10px;
    top: -25px;
    font-size: 0.7rem;
    border-radius: 2px;
    width: fit-content;
    height: fit-content;
    padding: 2px 4px;
    background-color: var(--orange);
    color: var(--black);
}
.notification-details .progress-bar .progress {
    height: 100%;
    background-color: var(--orange);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 4px;
}
.notification-details .progress-bar .progress.active {
    background-color: var(--red);
    border-radius: 4px;
}
.notification-dropdown:has(.no-notifications) {
    height: fit-content;
}
.notification-dropdown .no-notifications {
    width: 100%;
    padding: 20px;
    color: light-dark(var(--black),var(--white));
    font-size: 1rem;
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.notification-dropdown .no-notifications strong{
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.notification-dropdown .no-notifications p{
    padding-right:10px ;
    margin-bottom: 20px;
    font-size: 1rem;
    position :relative;
}

/* CHRISTMAS EFFECTS*/
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    z-index: 9999999999999;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    background-color: light-dark(var(--black),var(--white));
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes fall {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
        transform: translateY(100vh);
    }
}

@keyframes diagonal-fall {
    0% {
        opacity: 0;
        transform: translate(0, 0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
        transform: translate(10vw, 100vh);
    }
}

/* NEW YEAR EFFECTS  */
.fireworksContainer {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top:0;
    left: 0;
    z-index: 9999999999999999999;
    pointer-events: none;
}

.fireG {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 200px;
}

.fireCrBr {
    position: absolute;
    top: 0%;
    left: 0%;
    width: inherit;
    height: inherit;
    transform: rotate(calc((360deg / var(--bars)) * var(--barNumber)));
}

.fireCr {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 20px;
    height: 20px;
    color: inherit;
    background-color: currentColor;
    border-radius: 50%;
    filter: drop-shadow(0px 4px 15px currentColor);
    transform: translateY(calc(100% * 10));
    transition: 0.3s linear;
    opacity: 0;
}
.fireG.fired .fireCr {
    animation: fireWork 2s linear var(--animationDelay,0s) 1 forwards;
}

@keyframes fireWork {
    0%
    {
        transform: translateY(calc(30% * 10));
        opacity: 1;
    }
    80%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
        transform: translateY(calc(-60% * 10));
    }            
}        

.fireCr::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 400%;
    background-color: currentColor;
    filter: blur(44px);
    clip-path: polygon(0% 0%, 100% 0%, 60% 100%, 40% 100%);
}


/* live tv and radio shows  */
.live-tv-radio-shows-container {
    width: 100%;
    overflow: hidden;
}
.live-tv-radio-shows-container .section-heading {
    font-size: 1.5rem;
    border-left: 7px solid var(--orange);
    padding:5px 10px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.live-tv-radio-shows-container .section-heading .section-title{
    font-size: 1.4rem;
    font-weight: 630;
    text-transform: uppercase;
}
.live-tv-radio-shows-container .section-heading .scroll-button-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 2rem;
}
.live-tv-radio-shows-container .scroll-button-container i{
    cursor: pointer;
}
.live-tv-radio-shows-container .live-tv-radio-shows-items {
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(min(100%,120px),120px));
    grid-auto-flow: column;
    grid-auto-columns: 120px;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 10px 20px;
    gap: 20px;
}

.live-tv-radio-shows-items::-webkit-scrollbar {
    display: none; 
}
.live-tv-radio-shows-container .live-tv-radio-shows-items .live-show-card{
    width: 100%;
    height: fit-content;
}
.live-tv-radio-shows-container .live-tv-radio-shows-items .live-show-card a:has(img){
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    position: relative;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: light-dark(var(--black),var(--light-white));
    color: light-dark(var(--white),var(--black));
}
.live-tv-radio-shows-container .live-tv-radio-shows-items .live-show-card img{
    width: 40px;
    height:  40px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
    border-radius: 50%;
    outline: 5px solid light-dark(var(--white),var(--black));
    background-color: light-dark(var(--black),var(--light-white));
}
.live-tv-radio-shows-container .live-tv-radio-shows-items .live-show-card .show-info {
    width: 100%;
    margin-top: 10px;
    background-color: light-dark(transparent ,rgba(0, 0, 0, 0.5));
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    border-radius: 5px;
}
.live-tv-radio-shows-container .live-tv-radio-shows-items .live-show-card .show-info .show-name{
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: light-dark(var(--black),var(--white));;
}
.live-tv-radio-shows-container .live-tv-radio-shows-items .live-show-card .show-info .show-views{
    display: none;
    text-align: center;
}
@media (max-width:600px) {
    .live-tv-radio-shows-container .live-tv-radio-shows-items .live-show-card .show-info .show-views{
        display: block;
    }
}