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

body {
    font-family: 'Noto Sans Bengali', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}
.live-bg{
    background-image: var(--live-bg);
    background-size: cover;
    background-position: center;
}

/* Top Header */
.top-header {
    font-size: 13px;
}

.top-header a {
    color: #666;
    transition: color 0.3s ease;
}

.top-header a:hover {
    color: #0d6efd;
}

.language-links {
    flex-wrap: wrap;
}

/* Main Header */
.main-header {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo-icon {
    font-size: 18px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

/* Navigation */
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #f59b55;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #f59b55;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* ============================
   Breaking News Ticker
   ============================ */


#txt {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    font-family: sans-serif;
    /* letter-spacing: 3.5px; */
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    transform-style: preserve-3d;
    perspective: 100px;
    -webkit-transform-style: preserve-3d;
    -webkit-perspective: 100px;
}

#txt>b {
    height: 2.5rem;
    box-shadow: 0 .4rem .3rem -.3rem #aaa;
    color: #979c9f;
    background: linear-gradient(#f58a3a, #ffffff, #f59b55);
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform-origin: bottom;
    transform: rotateX(-85deg);
    -webkit-transform-origin: bottom;
    -webkit-transform: rotateX(-85deg);
    animation: getUp 7s infinite;
}

#txt>b:nth-child(2) {
    animation-delay: .25s;
}

#txt>b:nth-child(3) {
    animation-delay: .5s;
}

#txt>b:nth-child(4) {
    animation-delay: .75s;
}

#txt>b:nth-child(5) {
    animation-delay: 1s;
}

#txt>b:nth-child(6) {
    animation-delay: 1.25s;
}

#txt>b:nth-child(7) {
    animation-delay: 1.5s;
}

#txt>b:nth-child(8) {
    animation-delay: 1.75s;
}

@keyframes getUp {

    10%,
    50% {
        transform: rotateX(0);
    }

    0%,
    60%,
    100% {
        transform: rotateX(-85deg);
    }
}








.breaking-news-ticker {
    padding-top: 5px;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    height: 42px;
    max-width: 100%;
    padding: 0;
    background-color: #1a1a2e;
    width: 100%;
    overflow: hidden;
}

/* NEWS Badge */
.ticker-badge {
    background-color: #f3761b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
}

.ticker-badge::before {
    content: "";
    position: absolute;
    display: block;
    width: 0px;
    height: 0px;
    right: -12px;
    top: 0;
    border-right: 12px solid transparent;
    border-left: 0px solid transparent;
    border-top: 42px solid #f3761b;
    z-index: 1;
}

/* Scrolling Marquee */
.ticker-marquee-area {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    min-width: 0;
}

.ticker-marquee {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 45s linear infinite;
    will-change: transform;
}

.ticker-marquee:hover {
    animation-play-state: paused;
}

.ticker-marquee span {
    display: inline-block;
    padding: 0 40px;
    color: #d0d0d8;
    font-size: 15px;
    font-weight: 400;
    line-height: 42px;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Meta: Live dot + Source + Date */
.ticker-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    flex-shrink: 0;
    border-left: 1px solid #2e2e50;
    height: 100%;
}

.ticker-live-dot {
    width: 10px;
    height: 10px;
    background-color: #e53935;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.6);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 0 5px rgba(229, 57, 53, 0);
    }
}

.ticker-source {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.ticker-date {
    color: #9a9ab0;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

/* Static Headline (right side, before arrows) */
.ticker-static-headline {
    color: #d0d0d8;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 340px;
    padding: 0 14px;
    flex-shrink: 1;
    min-width: 0;
    border-left: 1px solid #2e2e50;
    line-height: 42px;
}

/* Navigation Arrows */
.ticker-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    height: 100%;
    border-left: 1px solid #2e2e50;
}

.ticker-nav-btn {
    width: 36px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-left: 1px solid #2e2e50;
    color: #9a9ab0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    padding: 0;
    line-height: 1;
}

.ticker-nav-btn:first-child {
    border-left: none;
}

.ticker-nav-btn:hover {
    background-color: #2a2a4a;
    color: #ffffff;
}
/* ===========================css by pramesh ========================================= */
.item-box-main{
    height: 500px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
}
 .tablist-box{
    flex-wrap: wrap;
 }
 .item-box-main-two{
    height: 450px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
 }
 /* .news-section-wrepper{
    width: 100%;
    height: auto;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: thin;
 } */
  .play-overlay{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flex-grow-1 h6{
    font-size: 12px;
  }
  .item-box-main-two {
    height: 465px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
}
.slick-next, .slick-prev{
    font-size: 0;
    line-height: 0;
    position: absolute !important;
    top: 50%;
    display: block;
    width: 30px !important;
    height: 30px !important;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: #fff !important;
    z-index: 999;
    border-radius: 50px !important;
}
.news-section-wrepper .text-muted{
    font-size: 12px !important;
}
.btn.share-btn i{
    color: #f3761b;
}
@media (max-width: 1399px) {
    .item-box-main{
        height: 425px;
        width: 100%;
        overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
    }
    .item-box-main-two {
    height: 480px;
    }
    .categori-news{
        display: block !important;
    }
    .categori-news .text-muted{
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 1280px) {
    .article-header .h2{
        font-size: 1.4rem;
    }
    .article-content p{
        font-size: 16px;
    }
    .article-content ul li{
        font-size: 16px;
    }
    .item-box-main-two {
    height: 465px;
    }
}
@media (max-width: 1024px) {
    .item-box-main{
        height: 360px;
    }
    .news-item p{
        font-size:12px;
    }
}
@media (max-width: 480px) {
.section-header h2{
    font-size:18px;
}
/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 5px !important;
}
.article-header .h2 {
        font-size: 1.1rem;
    }
    .slick-prev {
    left: -10px !important;
}
.slick-next {
    right: -10px !important;
}
.modal-header .input-group>.form-control{
    font-size: 14px !important;
}
}
@media (max-width: 380px) {
.article-header .h2 {
        font-size: 1rem;
    }
    .article-content p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 0rem !important;
    }
    .article-content ul li {
        font-size: 14px;
        line-height: 22px;
    }
    .categori-news{
        display: block !important;
    }
    .categori-news .text-muted{
        margin-bottom: 10px !important;
        display: block;
    }
}






/* Responsive – ticker */
@media (max-width: 991.98px) {
    .ticker-static-headline {
        display: none;
    }

    .ticker-meta .ticker-date {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .ticker-meta {
        display: none;
    }

    .ticker-badge {
        padding: 0 10px;
        font-size: 11px;
    }

    #txt {
        font-size: 12px;
    }

    #txt>b {
        height: 1.2rem;
    }
}

/* ============================
   Stock Market Ticker
   ============================ */
.stock-ticker {
    background-color: #f8f8fa;
}

.stock-ticker-wrapper {
    display: flex;
    align-items: center;
    height: 36px;
    border-bottom: 1px solid #e0e0e6;
}

.stock-nav-btn {
    width: 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #d0d0d8;
    border-radius: 0px;
    color: #888;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
}

.stock-nav-btn:hover {
    background-color: #e0e0e6;
    color: #333;
}

.stock-marquee-area {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 10px;
    min-width: 0;
}

.stock-marquee {
    display: flex;
    white-space: nowrap;
    animation: stockScroll 30s linear infinite;
    will-change: transform;
}

.stock-marquee:hover {
    animation-play-state: paused;
}

@keyframes stockScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.stock-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    font-size: 12.5px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    line-height: 36px;
    border-right: 1px solid #d6d6de;
}

.stock-item:last-child {
    border-right: none;
}

.stock-item .stock-name {
    font-weight: 600;
    color: #222;
}

.stock-item .stock-value {
    font-weight: 400;
    color: #444;
}

.stock-item .stock-change {
    font-weight: 500;
}

.stock-item .stock-change.negative {
    color: #e53935;
}

.stock-item .stock-change.positive {
    color: #2e7d32;
}

/* Responsive – stock ticker */
@media (max-width: 575.98px) {
    .stock-ticker-wrapper {
        height: 32px;
    }

    .stock-item {
        font-size: 11px;
        padding: 0 12px;
    }

    .stock-nav-btn {
        width: 28px;
        font-size: 11px;
    }
}

/* Advertisement Banner */
.ad-banner {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

/* Live TV Section */
.live-tv-section {}

.section-header h2 {
    color: #222;
}

.video-container {
    border-radius: 8px;
    overflow: hidden;
}

.live-banner {
    width: 100%;
    height: 100%;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.red-stripes .stripe {
    display: inline-block;
    box-shadow: 0 4px 6px rgba(220, 53, 69, 0.3);
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px) rotate(-5deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(-5deg);
    }
}

/* News Section */
.news-section {
    /* background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.news-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.news-section .card-img-top {
    height: 200px;
    object-fit: cover;
}

.news-section .card-text {
    color: #333;
    height:40px;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sidebar */
.sidebar-ad {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-ad img {
    display: block;
}

/* Trending News */
.trending-news {
    /* background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.trending-news h3 {
    color: #222;
    letter-spacing: 0.5px;
}

.news-item {
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.news-item:hover {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 8px;
    margin: -8px;
}

.news-item p {
    color: #333;
    line-height: 1.4;
}

.news-item img {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.news-item:hover img {
    transform: scale(1.05);
}

/* video play button */
.ratio{
    position: relative;
}

.play-overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon{
    width: 90px;
    filter: drop-shadow(0 0 20px rgba(243, 118, 27, 0.4));
    transition: all 0.3s ease;
}

.play-overlay:hover .play-icon {
    filter: drop-shadow(0 0 30px rgba(243, 118, 27, 0.6));
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

footer h5,
footer h6 {
    color: #fff;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #dc3545 !important;
}

footer .bi {
    transition: transform 0.3s ease;
}

footer .bi:hover {
    transform: scale(1.2);
}

/* Search Modal Styles */
#searchModal .modal-content {
    background-color: #ffffff;
    border-radius: 1.25rem !important;
}

.search-group .form-control:focus {
    box-shadow: none;
    border: none;
}

.search-results-list {
    max-height: 480px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px; /* Space for scrollbar */
}

/* Custom Scrollbar for Search Results */
.search-results-list::-webkit-scrollbar {
    width: 5px;
}

.search-results-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.search-results-list::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 10px;
}

.search-results-list::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}

.bg-light-hover {
    transition: all 0.2s ease;
}

.bg-light-hover:hover {
    background-color: #f8f9fa !important;
    transform: translateX(5px);
}

.bg-danger-subtle {
    background-color: rgba(220, 53, 69, 0.1);
}

.rounded-4 {
    border-radius: 1rem !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-nav {
        background: #f5f5f5;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        padding: 6px 0;
        border-bottom: 1px solid #d9d9d9;
        text-align: center;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

@media (max-width: 767.98px) {
    .language-links {
        font-size: 11px;
        gap: 2px !important;
    }

    .top-header .col-md-6>div {
        font-size: 12px;
    }

    .live-banner h1 {
        font-size: 2rem !important;
    }

    .red-stripes .stripe {
        font-size: 14px;
        padding: 8px 16px !important;
    }

    .news-item img {
        width: 80px !important;
        height: 60px !important;
    }
}

/* Utility Classes */
.bg-primary {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.btn-outline-primary {
    color: #dc3545;
    border-color: #dc3545;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
    transform: translateY(-2px);
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #f59b55;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f59b55;
}

/* Loading Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Top News Section */
.top-news-section {
    border-top: 1px solid #dee2e6;
}

.section-title {
    color: #222;
    font-size: 1.75rem;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 1.5rem !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #dc3545;
}

/* Featured News Card */
.featured-news-card {
    transition: transform 0.3s ease;
}

.featured-news-card:hover {
    transform: translateY(-5px);
}

.featured-news-card img {
    transition: transform 0.3s ease;
}

.featured-news-card:hover img {
    transform: scale(1.02);
}

.news-badge {
    background: rgba(220, 53, 69, 0.95) !important;
    backdrop-filter: blur(5px);
}

.featured-news-content h3 {
    color: #222;
    line-height: 1.4;
    transition: color 0.3s ease;
    cursor: pointer;
}

.featured-news-content h3:hover {
    color: #dc3545;
}

/* News Grid Items */
.news-grid-item {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.news-grid-item:hover {
    background-color: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-grid-item img {
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-grid-item:hover img {
    transform: scale(1.05);
}

.news-grid-item p {
    color: #333;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-grid-item:hover p {
    color: #dc3545;
}

/* News List */
.news-list {
    padding: 0;
}

.news-list-item {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    margin: -8px;
    border-radius: 6px;
}

.news-list-item:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-list-item .news-thumbnail {
    overflow: hidden;
    border-radius: 6px;
}

.news-list-item img {
    transition: transform 0.3s ease;
}

.news-list-item:hover img {
    transform: scale(1.08);
}

.news-list-item .news-content p {
    color: #222;
    font-size: 0.95rem;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.news-list-item:hover .news-content p {
    color: #dc3545;
}

/* Badges */
.badge {
    font-weight: 600;
    padding: 4px 10px;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
}

.badge.bg-danger {
    background: #dc3545 !important;
}

/* View More Link */
.top-news-section .btn-link {
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.top-news-section .btn-link:hover {
    transform: translateX(5px);
    color: #c82333 !important;
}
.article-content ul li{
    list-style: none;
}
.article-content ul li .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}
/* Responsive Design for Top News */
@media (max-width: 991.98px) {
    .featured-news-card {
        margin-bottom: 2rem;
    }

    .news-grid-item {
        margin-bottom: 1rem;
    }

    .news-list-item {
        padding: 10px 0;
        margin: 0;
    }

    .news-list-item .news-thumbnail img {
        width: 120px !important;
        height: 80px !important;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.5rem;
    }

    .featured-news-content h3 {
        font-size: 1.1rem;
    }

    .news-list-item .news-thumbnail img {
        width: 100px !important;
        height: 70px !important;
    }

    .news-list-item .news-content p {
        font-size: 0.85rem;
    }

    .badge {
        font-size: 0.65rem;
        padding: 3px 8px;
    }
}

/* Slick Slider Custom Arrows */
        /* .slick-prev,
        .slick-next {
            z-index: 1;
            width: 40px;
            height: 40px;
            background: #ffffff;
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        } */

        .slick-prev:before,
        .slick-next:before {
            color: #dc3545;
            /* Bootstrap danger color */
            font-size: 20px;
            display: none;
            /* Hide default arrows since we use BI icons */
        }

        .slick-prev {
            left: -20px;
        }

        .slick-next {
            right: -20px;
        }

        .slick-prev:hover,
        .slick-next:hover,
        .slick-prev:focus,
        .slick-next:focus {
            background: #dc3545;
            color: #ffffff !important;
        }

        .slick-prev i,
        .slick-next i {
            color: #dc3545;
            font-size: 1.2rem;
        }

        .slick-prev:hover i,
        .slick-next:hover i {
            color: #f3761b;
        }

        .slick-dots li button:before {
            font-size: 10px;
            color: #dc3545;
        }

        .slick-dots li.slick-active button:before {
            color: #dc3545;
        }
        .news-section-wrepper {
                    padding: 0 10px;
        }
/* Social Share Popup (Live TV) */
.share-container {
    display: inline-block;
}

.social-share-popup {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 1000;
    transform: scale(0);
    transform-origin: top right;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 120px;
    border: 1px solid rgba(0,0,0,0.1);
}

.share-container:hover .social-share-popup,
.share-container.active .social-share-popup {
    transform: scale(1);
}

.share-btn {
    transition: color 0.3s;
    color: #333;
}

.share-btn:hover {
    color: #dc3545;
}

.social-share-popup a {
    transition: transform 0.2s;
    display: inline-block;
}

.social-share-popup a:hover {
    transform: translateY(-3px);
}

