@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --red-primary: #E2090F;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    display: block;
}

li {
    list-style: none;
}

body {
    font-family: "Inter", sans-serif;
}

.pe-30px {
    padding-left: 30px;
}

.br-6 {
    border-radius: 6px !important;
}

.br-16 {
    border-radius: 16px !important;
}

.br-22 {
    border-radius: 22px !important;
}

.fs-8 {
    font-size: 8px !important;
}

.fs-10 {
    font-size: 10px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-14 {
    font-size: 12px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.p-16 {
    padding: 16px;
}

.height-30 {
    height: 30px;
}

.btn-outline-light {
    border-radius: 4px;
    font-size: 12px;
    padding-block: 8px;
    padding-inline: 24px;
}

.btn-out-color:hover {
    background: var(--red-primary);
    color: white;
}

.btn-danger {
    border-radius: 4px;
    font-size: 12px;
    padding-block: 8px;
    padding-inline: 24px;
    background: var(--red-primary);
}

.btn-dark {
    border-radius: 10px;
    font-size: 12px;
    padding-block: 6px;
    padding-inline: 20px;
    background: #2C2C2C;
}


.card {
    border-radius: 3px;
    background: rgba(250, 80, 85, 0.02);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.078);
    border: none;
    padding: 12px;
    overflow: hidden;
}

.item-padding1 {
    padding: 0 10px;
    margin-block: 10px;
}



.heading-1 {
    font-weight: 600;
    font-size: 12px;
    color: #000;
    margin: 0;
}

.heading-2 {
    font-weight: 400;
    font-size: 10px;
    color: #000;
    margin: 0;
}

.heading-3 {
    font-weight: 700;
    font-size: 12px;
    color: var(--red-primary);
    margin: 0;
}

.para1 {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    text-align: justify;
}

.light-dark {
    color: #666666 !important;
}

.light-dark2 {
    color: #999999 !important;
}


/* Navbar Section */

.navbar {
    padding-top: 0px;
    padding-bottom: 0px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 3px 1px transparent;
    z-index: 100;
    transition: all linear 0.3s;
}

.navbar.navbar-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 3px 1px var(--red-primary) !important;
    animation: navbarScrollAnimation linear 0.25s;
}

@keyframes navbarScrollAnimation {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar-brand {
    height: 40px;
}

.navbar-brand img {
    height: 100%;
}

.navbar-nav {
    gap: 2rem;
}

.navbar-nav li a {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: end;
    gap: 5px;
    transition: .25s;
}

.navbar-nav li a:hover {
    color: var(--red-primary) !important;
}

.navbar-nav li img {
    width: 20px;
}

.burger-menu {
    width: 40px;
}

.offcanvas{
    color:#fff;
    background-color: #000;
}
.offcanvas-body {
    overflow-x: hidden;
}

.offcanvas-body ul {
    display: flex;
    flex-direction: column;
}

.offcanvas-body ul li a {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    padding-block: 2px;
    transition: all .25s;
    margin-top: 7px;
}

.offcanvas-body ul li a:hover {
    color: var(--red-primary);
}

.sidenav-heading {
    padding-right: 2rem;
    padding-top: 15px;
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.sidenav-heading::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 75%;
    background: #fff;
    top: 47%;
    left: -20px;
    transform: translateY(-50%);
}

.sidenav-heading::before {
    position: absolute;
    content: '';
    height: 2px;
    width: 10%;
    background: #fff;
    top: 47%;
    right: -20px;
    transform: translateY(-50%);
}

.offcanvas-footer {
    padding-bottom: 20px;
    padding-right: 2.5rem;
}

.offcanvas-footer a {
    height: 32px;
    width: 32px;
    display: block;
}

.offcanvas-footer a img {
    height: 100%;
    object-fit: cover;
}

.left-toggler {
    height: 26px;
}

.left-toggler a {
    height: 100%;
}

.left-toggler img {
    /* height: 100%; */
    width: 40px;
}

.nice-select .option img,
.nice-select .current img {
    width: 20px;
    height: 15px;
    margin-left: 10px;
    vertical-align: middle;
}

.nice-select .option span,
.nice-select .current span {
    vertical-align: middle;
}

.nice-select {
    padding-inline: 10px;
}

.nice-select::after {
    display: none;
}

.search_btn {
    background: none;
    padding-block: 5px;
    font-size: 26px;
    border: none;
    color: #9E9E9E;
}

.bottom-navbar {
    padding-block: 16px;
    background: #E2090F;
}

.mt-90 {
    margin-top: 90px;
}

.mt-60 {
    margin-top: 40px;
}

.bottom-navbar ul {
    display: flex;
    gap: 50px;
}

.bottom-navbar ul a {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

/* Navbar Section End */

/* Home Section */

.mini_card {
    display: flex;
    align-items: end;
    gap: 8px;
    border-radius: 3px;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.15);
    background: #fff;
    padding: 8px;
    transition: .25s;
}

.mini_card:hover {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.251);
}

.mini_card img {
    height: 30px;
}

.mini_card span {
    height: 25px;
    width: 25px;
}

.slider-circle-left-arrow-red {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--red-primary);
    border: 1px solid var(--red-primary);
    font-size: 10px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    transition: .25s;
}

.slider-circle-left-arrow-red:hover {
    background: var(--red-primary);
    color: #fff;
}

.header1 {
    background: var(--red-primary);
    padding-inline: 16px;
    padding-block: 18px;
    position: relative;
}

.header1::before {
    position: absolute;
    content: '';
    bottom: 5px;
    left: 150px;
    height: 220px;
    width: 165px;
    background: #CC080D;
    transform: rotate(-70deg);
}

.header1::after {
    position: absolute;
    content: '';
    top: 5px;
    right: 150px;
    height: 220px;
    width: 165px;
    background: #CC080D;
    transform: rotate(-70deg);
}

@media (max-width: 767.98px) {

    .header1::before {
        background: transparent !important;
    }

    .header1::after {
        background: transparent !important;
    }
}

@media (max-width: 420px) {

    .header1::before {
        background: transparent !important;
    }

    .header1::after {
        background: transparent !important;
    }
    .carousel-indicators {
        margin-bottom: 8rem !important;
    }
}
.slider-items {
    height: 550px;
    width: 100%;
}

.slider-items img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.slider-text {
    padding-inline: 16px;
    padding-bottom: 20px;
}

.card-image1 {
    height: 120px;
    width: 100%;
}

.card-image1 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.card-text1 {
    padding: 12px;
}

.image2 {
    height: 100px;
    width: 100%;
    background: rgba(209, 209, 209, .3);
}

.image2 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    left: -27px;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--red-primary);
    color: var(--red-primary);
    transition: .25s;
    cursor: pointer;
    font-size: 12px;
}

.slider-arrow:hover {
    color: white;
    background: var(--red-primary);
}

.multiple-items .slick-list {
    padding: 0 0 0 20% !important;
}


.pill-toggle-top {
    display: inline-flex;
    background-color: #D9D9D9;
    border-radius: 999px;
    padding: 2px;
}

.pill-toggle-top .btn {
    border-radius: 999px;
    padding: 0.375rem 0.75rem;
    font-size: 0.9rem;
    border: none;
    font-size: 14px !important;
}

.pill-toggle-top .btn.active {
    background-color: var(--red-primary);
    color: white;
}

.pill-toggle-top .btn:not(.active) {
    background-color: transparent;
    color: #333;
}

.list1 .img_con {
    height: 50px;
}

.list1 .img_con img {
    height: 100%;
}

.list1 .chan_img {
    width: 100%;
}

.list1 .chan_img img {
    width: 100%;
}

.left_side_all_live{
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 400px;
}
.header2 {
    background: var(--red-primary);
    padding-inline: 20px;
    padding-block: 16px;
    padding-right: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header2 img {
    height: 36px;
}

.squ-btn {
    height: 30px;
    width: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-result img {
    height: 20px;
}

.img-con1 {
    width: 100%;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.img-con1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
    width: 30px;
}

.play_button img {
    height: 100%;
    width: 100%;
}

/* Home Section End */


/* News Section */

.top-team-sec img {
    height: 55px;
}

.multiple-items2 .slick-slide {
    margin: 0 10px;
}

.team-sec-gap {
    width: 100%;
}

.team-sec-gap img {
    height: 55px;
}

.video-player {
    height: 450px;
    overflow: hidden;
    position: relative;
}


.video-player img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.video-player .video-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(184deg, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 0.282) 54%, rgba(0, 0, 0, 0.8) 85%);
    z-index: 11;
}

.bottom-text {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 111;
}

.play-video-payer {
    height: 28px !important;
    width: auto !important;
}

.hig-card {
    border-radius: 16px;
    border: 1px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(to right, #1A375C, #888888) border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 6px;
    padding-inline: 20px;
}

.hig-card img {
    height: 30px;
}

.center-items-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tabs-section-1 ul {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: rgba(250, 80, 85, 0.02);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.078);
    border: none;
    justify-content: space-around;
}

.tabs-section-1 ul li button {
    font-weight: 600;
    font-size: 14px;
    color: #1A1A1A61;
}


.tabs-section-1 .nav-tabs .nav-item.show .nav-link,
.tabs-section-1 .nav-tabs .nav-link.active {
    color: var(--red-primary);
    background-color: transparent;
    border: 1px solid transparent;
    border-bottom: 4px solid var(--red-primary);
}

.tabs-section-1 .nav-tabs .nav-link:focus,
.tabs-section-1 .nav-tabs .nav-link:hover {
    isolation: isolate;
    border: 1px solid transparent;
    border-bottom: 4px solid var(--red-primary);
    color: var(--red-primary);
}

.form-control {
    background: #FAFAFA;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    padding: 10px;
}

.form-control::placeholder {
    color: #A6A6A6;
}

.btn-light {
    background: #E6E6E6;
    color: #A6A6A6;

}

.result-table img {
    height: 20px;
}

.match-status {
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.match-status.win {
    background: #0B854B;
}

.match-status.lose {
    background: var(--red-primary);
}

.match-status.draw {
    background: #CCCCCC;
}

/* News Section End */


/* Result Section */
.item4 {
    text-align: center;
    height: 48px;
    width: 48px;
    background: #F5F5F5;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.item4:hover,
.item4.active {
    background: var(--red-primary);
    transition: all .25s;
}

.item4:hover h4,
.item4.active h4 {
    color: #fff !important;
}

.height-one-d img {
    height: 20px;
    margin-left: 10px;
}

/* Result Section End */


/* Footer Section */
.footer_logo {
    height: 50px;
}

.footer_logo img {
    height: 100%;
}

footer a {
    transition: .25s;
}

footer a:hover {
    color: var(--red-primary);
}
.footer-nav-link a 
 {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    margin-top: 1rem !important;
}

/* Footer Section End */

.carousel-indicators {
    margin-bottom: 5rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.video-container video {
    border-radius: 0.375rem;
    background: #000;
}

/* Responsive YouTube */
.ratio-16x9 {
    position: relative;
    width: 100%;
}

.ratio-16x9::before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.ratio-16x9 > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.375rem;
}

/*marquee*/

.marquee-container {
    background-color: #000000;
    color: white;
    /*border-radius: 8px;*/
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    border: Opx solid #333;
}

.news-tag {
    background-color: #e2090f;
    color: white;
    padding: 14px 20px;
    min-width: 132px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-left: 1px solid #444;

}

.marquee-content {
    padding: 12px 0;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.news-item {
    display: inline-block;
    margin: 0 30px;
    font-size: 1.1rem;
}

.news-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.news-item a:hover {
    color: #e2090f;
}

.separator {
    color: #e2090f;
    font-weight: bold;
}

.mobile-tag {
    background-color: #e2090f;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .marquee-content {
        animation-duration: 20s;
    }
    
    .news-item {
        margin: 0 20px;
        font-size: 1rem;
    }
    
    .marquee-container {
        border-radius: 0px;
    }
}

/* display card */
.card-custom {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.card-img-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-img-container-sidebar {
    position: relative;
    overflow: hidden;
}

.card-img-top-popular {
    /*height: 100%;*/
    max-height: 100px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-custom:hover .card-img-top {
    transform: scale(1.05);
}

.card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 5px 5px 5px 5px;
}

.card-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.card-body {
    padding: 15px;
}

.card-date {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.card-date i {
    margin-right: 5px;
    color: #e74c3c;
}

.card-text {
    color: #495057;
    font-size: 0.95rem;
    margin-top: 10px;
}

.category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.filter-buttons {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-filter {
    background-color: white;
    color: #495057;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 8px 20px;
    transition: all 0.3s;
}

.btn-filter.active, .btn-filter:hover {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.footer {
    text-align: center;
    margin-top: 50px;
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .card-img-container {
        height: 200px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
}

.burger-top-menu a {
    font-size: 10px;
}

.burger-top-menu img {
    width: 12px;
}

.card-compact {
    /*max-height: 110px;*/
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: none;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
}
.card-compact:hover {
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.3);
    transform: translateY(-3px);
}
.card-img-compact {
    height: 110px;
    width: 100%;
    object-fit: cover;
}
.card-body-compact {
    padding: 0.85rem;
    overflow: hidden;
}
.card-title-compact {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
    /*font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.2;
    color: #dc3545;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;*/
}
.card-meta-compact {
    font-size: 0.75rem;
    color: #adb5bd;
    margin-bottom: 0.4rem;
}
.card-text-compact {
    font-size: 0.8rem;
    color: #dee2e6;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.5rem;
}
.btn-read-more {
    background-color: #dc3545;
    border: none;
    color: white;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.btn-read-more:hover {
    background-color: #c82333;
    transform: scale(1.05);
}
.section-title {
    color: #dc3545;
    border-bottom: 2px solid #dc3545;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.card-highlight {
    border-right: 3px solid #dc3545;
}
/* RTL specific adjustments */
.bi-calendar3, .bi-person {
    margin-right: 0 !important;
    margin-left: 0.25rem;
}
.me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}
.bi-arrow-right {
    transform: rotate(180deg);
}

.close-button{
    width: 15px;
}

.carousel-indicators [data-bs-target]{
    width: 15px; /* Adjust as needed */
    height: 15px; /* Adjust as needed */
    background-color: #ccc;
    border-radius: 50%;
    /* Further styling for non-active indicators can go here */
}

.carousel-indicators .active {
    background-color: red; /* Red color for the active indicator */
}

.africa-cup-of-nations{
    background-image: url('/assets/front/img/slogan/caf.png');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */

}

.moroccan-premier-league{
    background-image: url('/assets/front/img/slogan/botola1.webp');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */

}
.spanish-league{
    background-image: url('/assets/front/img/slogan/liga.webp');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.english-premier-league{
    background-image: url('/assets/front/img/slogan/england.webp');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.italian-league{
    background-image: url('/assets/front/img/slogan/italian.webp');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.frensh-league{
    background-image: url('/assets/front/img/slogan/frensh.png');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.german-league{
    background-image: url('/assets/front/img/slogan/Bundesliga.png');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.belgian-league{
    background-image: url('/assets/front/img/slogan/Belgian.webp');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.dutch-premier-league{
    background-image: url('/assets/front/img/slogan/holland.webp');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.uefa-champions-league{
    background-image: url('/assets/front/img/slogan/UEFA_Champions_League.jpg');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.european-league{
    background-image: url('/assets/front/img/slogan/uefa-europa-league.jpg');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.tunisian-league{
    background-image: url('/assets/front/img/slogan/tunisian.webp');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.jordanian-professional-league{
    background-image: url('/assets/front/img/slogan/jordanian.webp');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.saudi-professional-league{
    background-image: url('/assets/front/img/slogan/saudi.webp');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}
.qatar-stars-league{
    background-image: url('/assets/front/img/slogan/quatar.png');
    background-size: 27px 27px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 35px; /* Make space for the image */
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}
.post-card {
    transition: transform 0.3s ease;
    height: 100%;
}
.post-card:hover {
    transform: translateY(-5px);
}
.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}
.post-image {
    height: 200px;
    object-fit: cover;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.breadcrumb {
    background: transparent;
    padding: 0;
}
.pagination .page-link {
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.pagination .page-link:hover {
    color: #0056b3;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.podcast-hero {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
}

.podcast-video-container {
    position: relative;
    margin-top: 10px;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.podcast-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.podcast-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.back-btn {
    background: #E2090F;
    color: white;
    margin-bottom: 10px;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #545b62;
    color: white;
}