body{
	font-family: 'Fira Sans', sans-serif!important;
    padding-top:56px;
    color: #19272e;
    font-size: 14px;
    /*background-color: #efefef;*/
    /*background-color: #131722;*/
    /*/background-color: #fff;*/
    text-rendering: optimizeLegibility;

    /*background-color:#1c212e;
    color:#fff;*/

    background-color: #fff;
    color: #000;
    
}

@media (max-width: 768px) {
    body {
        font-size: 16px; 
    }
}



.
body,html,input,select,textarea,h1,h2,h3,h4,h5,h6,label,.btn{
    font-weight: 400;
    font-family: 'Fira Sans', sans-serif!important;
}

hr.
{

    border-top: 1px solid #ddd;
}


a{
    color:#000;
}

a:hover{
    color:#fdb201;
}

p a {
    color: #fdb201;
    text-decoration: underline;
}

p a:hover {
    color: #000;
    text-decoration: none;
}

blockquote {

    border-left: 5px solid #333333;
}

.titlovi
{
    padding-left:10px;
    padding-right:10px;
}


.titlovi.black
{
    background-color:#000;
    color:#fff;
}

.titlovi.blue
{
    background-color:#5bb6ea;
    color:#fff;
}

.footer-dark
{
    background-color: #0a0d14;
    color: #949cb0;
    padding-top:30px;
    padding-bottom:30px;
}

.footer-dark a
{
    color:#fff;
}

.footer-dark a:hover
{
     color:#24baef;
}


.container-fluid,
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media(min-width:576px) {
    .container-fluid,
    .container {
        max-width: 540px
    }
}

@media(min-width:768px) {
    .container-fluid,
    .container {
        max-width: 720px
    }
}

@media(min-width:992px) {
    .container-fluid,
    .container {
        max-width: 960px
    }
}

@media(min-width:1200px) {
    .container-fluid,
    .container {
        max-width: 1170px
    }
}

@media(min-width:1440px) {
    .container-fluid,
    .container {
        max-width: 1440px
    }
}

@media(min-width:1200px) {
    .container-fluid,
    .container {
        padding-left: 38px;
        padding-right: 38px
    }
}

@media(min-width:1486px) {
    .container-fluid,
    .container {
        max-width: 1486px
    }
}

/*@media(min-width:1776px) {
    .container,
    .container-fluid {
        max-width: 1776px
    }
}*/

/*
* movie item
 */
    .movie-item
    {
        margin-bottom:30px;
    }



/*
================================================================
=== FINAL & SEO-FRIENDLY POSTER STYLE (Use this one) ===
================================================================
*/

/* 1. The Link Container (Wrapper) */
.movie-item a.poster {
    display: block;
    position: relative; /* CRUCIAL: This is the anchor for the overlay */
    overflow: hidden;
    aspect-ratio: 2 / 3; /* Maintains shape, prevents layout shift */
    border: 1px solid #F6B203;
    background-color: #000; /* Shows a black background while image loads */
}

/* 2. The SEO-Friendly Image */
.movie-item a.poster img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the space without stretching */
    transition: transform 0.3s ease-in-out; /* Optional: Nice zoom effect */
}

/* 3. The Overlay (using ::after on the <a> tag) */
.movie-item a.poster::after {
    content: 'WATCH FILM';
    
    /* Positioned absolutely, relative to the <a> tag */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Center the text */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Styling */
    background-color: rgba(253, 178, 1, 0.9);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    
    /* Hide by default */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* 4. The Hover Effect */
.movie-item a.poster:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Optional: Zoom the image slightly on hover for a dynamic effect */
.movie-item a.poster:hover img {
    transform: scale(1.05);
}

    .movie-item > .subtitle
    {
        margin-top:10px;
        color:#949cb0;
    }

    .movie-item > .title
    {
        /*margin-top:20px;*/
        height:60px;
        overflow:hidden;
    }


.section
{
    padding-top:30px;
    /*padding-bottom:30px;*/
}

.section.dark
{
    /*padding-top:30px;*/
    /*color:#fff;*/
    /*background-color:#131722;*/
}

.section.dark a
{
    /*color:#fff;*/
}

.section.dark a.link-dark
{
    /*color:#949cb0;*/
}

.section.dark a:hover{
    /*color:#24baef;*/
}

.navbar-header .btn-oo-trigger{
    margin-top:2px;
    display:none;
}

.btn-oo-trigger{
	color:#fff;
    border:none;
    background: none;
    outline:none;
    padding:10px;
    display:block;
    font-size: 18px;
}

.nav-menu-wrapper .navbar-close{
    display:none;
    position:absolute;
    right:0;
    top:0;
}



.nav-menu-wrapper{
    display: block;
}


.navbar-main-wrapper{
    /*display: none;*/
}

.navbar-search-wrapper{
    position: relative;
    display:none;
    /*z-index: 1;*/
}

.navbar-search-wrapper .navbar-search-healper{
    position: absolute;
    margin-top:-10px;
    left:0;
    right: 0;
    padding:20px;
    background-color: #fff;
    color:#000;
    /*border:1px solid #ddd;
    border-top:none;*/
    box-shadow: 0 1px 15px rgba(0,0,0,0.35);
    z-index: -1;
    /*height: 300px;*/
    /*display: none;*/
}

.navbar-search-wrapper input#q{
        padding: 23px 20px 20px 20px;
    font-size: 150%;
}

/*
* ooveo navabr
*/

.navbar-oo{
    /*background: #fff;*/
    /*background:#1d1d1d;*/
    background-image: url(https://lostreel.com/files/16mm.gif) !important;
    box-shadow: 0 1px 6px rgba(0,0,0,0.35);
    min-height: 76px;
    padding-top:13px;
    /*border-top:3px solid #db2213;*/
    /*height:80px;*/
}

.navbar-oo a.navbar-brand{
    font-weight: 300;
    /*color:#7C7C7C;*/
    /*position: relative;
    padding-left:34px;*/
    font-weight: bold;

}

.navbar-oo a.navbar-brand span.logo img{
    position: relative;
   
    display: inline-block;
    width:170px;
    /*width:36px;
    height:36px;*/
    left:0;
    top:-15px;

    /*background-image: url(icons/android-icon-72x72.png);
    background-size: 100% 100%;*/
}

.navbar-oo ul.nav.navbar-nav li a{
    color: #fff;
    font-size:14px;
}

ul.nav.navbar-nav li.dropdown ul li a {
    color: #fff;
}

.navbar-oo ul.nav.navbar-nav li a:hover{
    background-color: #222;
    color:#fdb201;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background-color: #444;
    border-color: #222;
}

.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: #fff;
}

@media (max-width: 768px) {
    .mobile-wrapper{
        display:none;
    }

}

.dropdown-menu {
	background-color:#000!important;
	}



@media (max-width: 767px) {
  .navbar .nav-menu-wrapper{
        padding:20px;
        display: none;
        position:fixed;
        top:76px;
        bottom:0;
        left:0;
        right:0;
        background:#000;
        overflow-y: scroll;
        z-index:0;
        background-color:#000;
        /*border-top:1px solid #ddd;*/
        /*box-shadow: 0 1px 6px rgba(0,0,0,0.45);*/
        /*padding:20px;*/
    }


    .navbar-header .btn-oo-trigger{
        display:block;
    }

    .nav-menu-wrapper .navbar-close{
        display:block;
    }


    .navbar-oo a.navbar-brand{
        display: block;
        position:absolute;
        left:50px;
        right:50px;
        text-align: center;

    }

    

    .navbar-header .btn-oo-trigger#hideSidebar{
        display: none;
    }

}




.page-header-oo{
    margin-top:0;
    margin-bottom: 30px;
   /* background-blend-mode: overlay;
    background-image: url(https://i.pinimg.com/originals/08/d3/37/08d3370b7b05d9aadaf20a52ab0b549e.gif);*/
	background-color:#fff;
    color:#000;
    padding-top:40px;
    min-height: 128px;



    /*padding-top:30px;
    padding-bottom:30px;
    margin-bottom:30px;
    background-color: #4caf50;
    background-blend-mode: overlay;
    background-image: url(http://dmypbau5frl9g.cloudfront.net/assets/common/bg-page-section-00fcdc3f6a998791f63bb32dc69b1105.png);*/

}

.page-header-fmc{
    color:#e20b12;
    margin-top:0;
    margin-bottom: 30px;
    border-bottom:1px solid #e20b12;
    border-left:5px solid #e20b12;
    padding-left:15px;

}




/*
* buttons
*/




.btn-primary-oo{
    color: #000;
    background-color: #fdb201;
    border-color: #000!important;
	font-size: 12px;
    font-weight: 700;
}

.btn-primary-oo.padding-oo
{
    padding-left:60px;
    padding-right:60px;
    padding-top:20px;
    padding-bottom:20px;
    border-radius: 5px;
    /*box-shadow: 0 0 0 0.2rem rgba(69,196,241,.5);*/
}

.btn-default.padding-oo
{
    padding-left:40px;
    padding-right:40px;
    padding-top:10px;
    padding-bottom:10px;
    border-radius: 5px;
}

.btn-primary-oo:focus,.btn-primary-oo:hover, .btn-primary-oo.focus {
    color: #fff;
    background-color: #000;
    /*border-color: #122b40;*/
    outline: #fdb201;
    /*border-color: #CAE5F8;*/
    /*box-shadow: 0 0 0 2px #CAE5F8;*/
    
}

.btn-default:focus, .btn-default:hover, .btn-default.focus
{
     color: #fff;
    /*color: #fff;
    background-color: #0f9ed1;*/
    /*border-color: #122b40;*/
        outline: none;
    /*border-color: #CAE5F8;*/
    /*box-shadow: 0 0 0 2px #CAE5F8;*/
    box-shadow: 0 0 0 2px rgba(69,196,241,.5);
}












/*
* nav tabs
*/
ul.nav-tabs-oo{
    /*border-bottom: 1px solid #ddd;*/
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    /*margin-bottom:10px;*/
}

ul.nav-tabs-oo > li{
     display: inline-block;
}

ul.nav-tabs-oo > li.active > a, ul.nav-tabs-oo > li > a:hover{
    border-bottom:2px solid #448aff;
}

ul.nav-tabs-oo > li > a{
    
    display: block;
    padding:15px;
    text-decoration: none;
    border-bottom:2px solid transparent;
}

/*
* nav list
*/
ul.nav-list-oo{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

ul.nav-list-oo > li{
    display: block;
}

ul.nav-list-oo > li > a{
    border-left:2px solid transparent;
    display:block;
    padding-left:8px;
    padding-right: 10px;
    padding-top:5px;
    padding-bottom: 5px;
}

ul.nav-list-oo > li.active > a, ul.nav-list-oo > li > a:hover{
    border-left:2px solid #448aff;
}


ul.nav-list-oo > li > a{
    /*display: block;
    padding:10px;
    text-decoration: none;
    border-bottom:2px solid transparent;*/
}


/*
* box
*/

.box-oo{
    /*background-color: #fff;*/
    /*border: 1px solid #ddd;*/
    margin-bottom: 30px;

}

.box-oo .box-oo-header{
    padding: 20px;
    /*border-bottom:1px solid #ddd;*/
}

.box-oo .box-oo-body{
    padding:20px;
   /* font-size: 12px;*/
}







/*
* or
*/
  .or {
    position: relative;
    font-size: 18px;
    color: #aaa;
    margin-top: 10px;
            margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .span-or {
    display: block;
    position: absolute;
    left: 50%;
    top: -2px;
    margin-left: -25px;
    background-color: #fff;
    width: 50px;
    text-align: center;
  }
  .hr-or {
    background-color: #cdcdcd;
    height: 1px;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }


    
/*
* final edit
*/





/*
* fix
*/
input[type=checkbox], input[type=radio] {
    margin: 4px 0 0;
    margin-top: 2px;
    line-height: normal;
}


.label.tag a{
    color:#fff;
}

.bold{
    font-weight: bold;
}

.progress.fmc .progress-bar{
    background-color:#448aff;
}

.dropdown-menu.fmc{
    font-size:13px;
}

.dropdown-menu.fmc.popup{
    top:0;
}

.dropdown-menu.fmc .header{
    padding:10px;
    border-bottom:1px solid #ddd;
    overflow:hidden;
}

.dropdown-menu.fmc .body{
    padding:10px;
}


.dropdown-menu.fmc .body ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown-menu.fmc .body ul>li>a{
    display: block;
    padding:4px 5px 4px 5px;
    /*display: inline-block;*/
}

.dropdown-menu.fmc .body ul>li>a:hover{
    background-color: #efefef;
    /*display: inline-block;*/
}

.dropdown-menu.fmc .footer{
    padding:10px;
    border-top:1px solid #ddd;
    overflow:hidden;
}

.background-cover{
    
}


.tabs-left, .tabs-right {
  border-bottom: none;
  padding-top: 2px;
}
.tabs-left {
  border-right: 1px solid #ddd;
}
.tabs-right {
  border-left: 1px solid #ddd;
}
.tabs-left>li, .tabs-right>li {
  float: none;
  margin-bottom: 2px;
}
.tabs-left>li {
  margin-right: -1px;
}
.tabs-right>li {
  margin-left: -1px;
}
.tabs-left>li.active>a,
.tabs-left>li.active>a:hover,
.tabs-left>li.active>a:focus {
  border-bottom-color: #ddd;
  border-right-color: transparent;
}

.tabs-right>li.active>a,
.tabs-right>li.active>a:hover,
.tabs-right>li.active>a:focus {
  border-bottom: 1px solid #ddd;
  border-left-color: transparent;
}
.tabs-left>li>a {
  border-radius: 4px 0 0 4px;
  margin-right: 0;
  display:block;
}
.tabs-right>li>a {
  border-radius: 0 4px 4px 0;
  margin-right: 0;
}


.fmc-footer{
    margin-top:30px;
    background-color: #1a1a1a;
    /*padding-top:30px;
    padding-bottom:30px;*/
    color:#fff;
}

.footer a {
    /*color:#db2213;*/
}

blockquote.normalize {
    font-size:13px;
}


#gdpr-cookie-message {
    position: fixed;
    right: 30px;
    bottom: 30px;
    max-width: 375px;
    background-color: #fdb201;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    margin-left: 30px;
    font-family: system-ui;
}
#gdpr-cookie-message h4 {
    color: #fff;
    
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
#gdpr-cookie-message h5 {
    color: #fff;
   
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
}
#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: white;
    font-size: 15px;
    line-height: 1.5em;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}
#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}
#gdpr-cookie-message a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255,255,255,0.75);
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message a:hover {
    color: white;
    border-bottom-color: white;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: #fff;
    color: #000;
    
    font-size: 15px;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message button:hover {
    background: white;
    color: #000;
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-advanced {
    background: white;
    color: rgb(25, 103, 210);
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
}

@media (max-width: 767px) {
    .movie-item .title.visible-xs-sm h3 {
        /* Osigurava da naslov ima dovoljno visine za otprilike 2-3 retka teksta */
        /* Prilagodite vrijednost po potrebi, ovisno o fontu */
        min-height: 42px; 
    }
	.h2, h2 {
    font-size: 18px;
    line-height: 1.3;
  }
	p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 333;
}
}


.custom-embed, #player.plyr--video .plyr__video-wrapper {
padding-bottom: 75% !important; /* 4:3 aspect ratio */
}

@media (min-width: 992px) {
.custom-embed, #player.plyr--video .plyr__video-wrapper {
padding-bottom: 36.5625% !important; /* 16:9 smanjen za 35% */
}
}



/* ====================================================================== */
/* ============= FINAL STYLES FOR WATCH.PHP PAGE (v6.0) ================= */
/* ====================================================================== */

/* --- Main Layout & Structure --- */

#watchPageContainer .container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
#watchPageContainer a { color:#666 ; text-decoration: none; } a:hover { color:#fdb201!important;text-decoration: underline; }

#watchPageContainer .watch-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px 40px;
    padding: 20px 0;
}
@media (min-width: 992px) {
    #watchPageContainer .watch-grid {
        grid-template-columns: 1fr 300px;
        align-items: flex-start; 
    }
}

/* --- Video Player Facade --- */
#watchPageContainer .video-facade {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    border-radius: 8px; overflow: hidden;
}
#watchPageContainer .play-button-overlay {
    width: 70px; height: 70px; background: rgba(0, 0, 0, 0.6);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
}
#watchPageContainer .video-facade:hover .play-button-overlay {
    transform: scale(1.1);
    background: rgba(0,0,0,0.8);
}
#watchPageContainer .video-embed-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
#watchPageContainer .video-embed-wrapper iframe {
    width: 100%; height: 100%; border: 0;
}

/* --- Typography Overrides --- */
#watchPageContainer h1.movie-title-main {
    font-size: 2.2rem;
    margin: 20px 0 15px;
    font-weight: 600;
    line-height: 1.2;
}
#watchPageContainer .movie-meta-bar {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 10px 15px;
    color: #555;
    font-size: 0.9rem;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}
#watchPageContainer .details-description,
#watchPageContainer .details-description p {
    font-size: 1rem;
    line-height: 1.7;
}
#watchPageContainer .details-description h2, 
#watchPageContainer .details-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}
#watchPageContainer h3.sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}
#watchPageContainer .sidebar-movie-item .title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* --- General Layout Details --- */
#watchPageContainer .details-grid {
    display: flex; flex-direction: column;
    gap: 30px; margin-top: 25px;
}
@media (min-width: 768px) {
    #watchPageContainer .details-grid {
        flex-direction: row; align-items: flex-start;
    }
}
#watchPageContainer .details-poster-actions { flex: 0 0 200px; }
#watchPageContainer .details-poster img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
#watchPageContainer .details-actions { margin-top: 15px; display: flex; flex-direction: column; gap: 10px; }
#watchPageContainer .action-button {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 10px; border-radius: 5px; text-align: center;
    font-weight: 600; font-size: 0.9rem;
    transition: background-color 0.2s; border: 1px solid #ccc;
}
#watchPageContainer .btn-amazon { background-color: #fdb201; color: #111 !important; border-color: #fdb201; }
#watchPageContainer .btn-amazon:hover { color:#fff; background-color: #e6a100; text-decoration: none; }
#watchPageContainer .btn-share { background-color: #6c757d; color: #fff !important; border-color: #6c757d; }
#watchPageContainer .btn-share:hover { background-color: #5a6268; text-decoration: none; }
#watchPageContainer .sidebar-movie-list { display: flex; flex-direction: column; gap: 15px; list-style: none; padding: 0; }
#watchPageContainer .sidebar-movie-item a { display: flex; gap: 15px; align-items: center; }
#watchPageContainer .sidebar-movie-item img { width: 50px; height: 75px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
#watchPageContainer .sidebar-movie-item a:hover .title { text-decoration: underline; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    #watchPageContainer h1.movie-title-main {
        font-size: 1.8rem;
    }
}

/* --- Sticky Sidebar Logic --- */
@media (min-width: 992px) {
    #watchPageContainer .sidebar-sticky-wrapper {
        position: -webkit-sticky; /* For Safari */
        position: sticky;
        /* Your navbar is 76px high. This will make the sidebar stick 20px below it. */
        top: calc(76px + 20px); 
    }
}


        /* --- CRITICAL FIX: Larger Base Font Sizes --- */
        .watch-main-content { font-size: 16px; /* Increases base font size */ }
        .movie-title-main { font-size: 2.5rem; margin: 0 0 10px; font-weight: 700; }
        .movie-meta-bar { font-size: 1.3rem; }
        .details-description { font-size: 1.6rem; line-height: 1.5; }
		.details-description .h2, h2 {font-size: 24px; line-height: 1.2;}

        @media (max-width: 768px) {
            .watch-main-content { font-size: 15px; }
            .movie-title-main { font-size: 2.8rem; }
        }

        /* Main Layout Grid */
        .watch-grid { display: grid; grid-template-columns: 1fr; gap: 30px; padding: 30px 0; }
        @media (min-width: 992px) { .watch-grid { grid-template-columns: 1fr 320px; } }
        .watch-main-content { min-width: 0; } .watch-sidebar { min-width: 0; }

        /* Video Player Facade */
        .video-player-container { position: relative; width: 100%; aspect-ratio: 5 / 2; background-color: #000; border-radius: 8px; overflow: hidden; }

   @media (max-width: 768px) {     .video-player-container { position: relative; width: 100%; aspect-ratio: 16 / 12; background-color: #000; border-radius: 8px; overflow: hidden; }}


        .video-facade { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; cursor: pointer; display: flex; align-items: center; justify-content: center; }
        .play-button-overlay { width: 80px; height: 80px; background: rgb(252 178 2 / 74%); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s ease, background-color 0.2s ease; }
        .video-facade:hover .play-button-overlay { transform: scale(1.1); background:rgb(252 178 2); }
        .video-embed-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
        .video-embed-wrapper iframe { width: 100%; height: 100%; border: 0; }

        /* Movie Info Section */
        .movie-info-header { margin-top: 20px; }
        .movie-meta-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 15px; color: #666; padding-bottom: 15px; border-bottom: 1px solid #ddd; }
        .movie-meta-bar .category a { background: #eee; padding: 3px 10px; border-radius: 15px; color: #555; }
        .movie-meta-bar .category a:hover { background: #ddd; }
        .imdb-rating strong { font-size: 1.1em; color: #000; }

        /* Two-Column Details */
        .details-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 25px; }
        @media (min-width: 768px) { .details-grid { flex-direction: row; align-items: flex-start; padding-left: 45px;} }
        .details-poster-actions { flex: 0 0 200px; }
		.details-description {padding: 0 22px 22px 22px;}
        .details-poster img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        .details-actions { margin-top: 15px; display: flex; flex-direction: column; gap: 10px; }
        .action-button { display: flex; align-items: center; justify-content: center; width: 100%; padding: 10px; border-radius: 5px; text-align: center; font-weight: 600; font-size: 1.4rem; transition: background-color 0.2s; }
        .action-button .fa { margin-right: 8px; }
        .btn-amazon { background-color: #FF9900; color: #fff !important; } .btn-amazon:hover { background-color: #e68a00; }
        .btn-share { background-color: #555; color: #fff !important; } .btn-share:hover { background-color: #444; }
        .details-description h3 { font-size: 1.9rem; font-weight: 600;margin-top: 0; }

        /* Sidebar */
        .sidebar-section { margin-bottom: 30px; }
        .sidebar-title { font-size: 1.4rem; font-weight: 700; margin: 0 0 15px; padding-bottom: 10px; border-bottom: 1px solid #ddd; }
        .sidebar-movie-list { display: flex; flex-direction: column; gap: 15px; list-style: none; padding: 0; }
        .sidebar-movie-item a { display: flex; gap: 15px; align-items: center; }
        .sidebar-movie-item img { width: 50px; height: auto; border-radius: 4px; flex-shrink: 0; }
        .sidebar-movie-item .title { font-size: 1.6rem; font-weight: 600; color: #333; line-height: 1.2; }
        .sidebar-movie-item a:hover .title { color:#fdb201; }

/* ====================================================================== */
/* ============= STICKY SIDEBAR FOR WATCH.PHP =========================== */
/* ====================================================================== */

@media (min-width: 992px) {

 /* .watch-grid {
        align-items: flex-start; 
    }*/

    .sidebar-sticky-wrapper {
        position: -webkit-sticky; /* For Safari compatibility */
        position: sticky;
        /* Your navbar is 76px high. This will make the sidebar stick 20px below it. */
        top: calc(76px + 20px); 
    }
}

    .coverflow-carousel-container {
        width: 100%;
        padding: 15px 0 100px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow-x: hidden;
    }
    .coverflow-title {
        font-size: 28px;
        font-weight: 300;
        color: #333;
        margin-bottom: 25px;
        transition: opacity 0.5s ease;
        min-height: 34px;
        text-align: center;
    }
    .coverflow-stage {
        position: relative;
        width: 100%;
        height: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
        perspective: 1500px;
    }
    .coverflow-item {
        position: absolute;
        width: 160px;
        height: 240px;
        cursor: pointer;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                    filter 0.6s ease, 
                    z-index 0.6s;
    }
    .coverflow-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        -webkit-box-reflect: below 3px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), to(rgba(255, 255, 255, 0.15)));
    }
    .coverflow-item.active { transform: scale(1.15) translateZ(0); filter: brightness(1); z-index: 20; }
    .coverflow-item.prev-1 { transform: translateX(-80%) rotateY(45deg) scale(0.9); filter: brightness(0.85); z-index: 19; }
    .coverflow-item.next-1 { transform: translateX(80%) rotateY(-45deg) scale(0.9); filter: brightness(0.85); z-index: 19; }
    .coverflow-item.prev-2 { transform: translateX(-150%) rotateY(50deg) scale(0.8); filter: brightness(0.7); z-index: 18; }
    .coverflow-item.next-2 { transform: translateX(150%) rotateY(-50deg) scale(0.8); filter: brightness(0.7); z-index: 18; }
    .coverflow-item.prev-3 { transform: translateX(-210%) rotateY(55deg) scale(0.7); filter: brightness(0.6); z-index: 17; }
    .coverflow-item.next-3 { transform: translateX(210%) rotateY(-55deg) scale(0.7); filter: brightness(0.6); z-index: 17; }
    .coverflow-item.prev-4 { transform: translateX(-260%) rotateY(60deg) scale(0.6); filter: brightness(0.5); z-index: 16; }
    .coverflow-item.next-4 { transform: translateX(260%) rotateY(-60deg) scale(0.6); filter: brightness(0.5); z-index: 16; }
    .coverflow-item.prev-5 { transform: translateX(-300%) rotateY(65deg) scale(0.5); filter: brightness(0.4); z-index: 15; }
    .coverflow-item.next-5 { transform: translateX(300%) rotateY(-65deg) scale(0.5); filter: brightness(0.4); z-index: 15; }
    .coverflow-item.prev-6 { transform: translateX(-330%) rotateY(70deg) scale(0.4); filter: brightness(0.3); z-index: 14; }
    .coverflow-item.next-6 { transform: translateX(330%) rotateY(-70deg) scale(0.4); filter: brightness(0.3); z-index: 14; }
    .coverflow-item.hide-left { transform: translateX(-350%) rotateY(75deg) scale(0.3); filter: brightness(0); z-index: 1; }
    .coverflow-item.hide-right { transform: translateX(350%) rotateY(-75deg) scale(0.3); filter: brightness(0); z-index: 1; }
    .coverflow-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
        background: rgba(0,0,0,0.3);
        border-radius: 50%;
        border: none;
        color: white;
        font-size: 26px;
        z-index: 30;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s;
    }
    .coverflow-nav:hover { background: rgba(0,0,0,0.6); }
    .coverflow-nav.prev { left: 16%; }
    .coverflow-nav.next { right: 16%; }
    @media(max-width: 1200px) { .coverflow-nav.prev { left: 15%; } .coverflow-nav.next { right: 15%; } }
    @media(max-width: 992px) { .coverflow-nav.prev { left: 5%; } .coverflow-nav.next { right: 5%; } }
    @media(max-width: 768px) { .coverflow-stage { height: 200px; } .coverflow-item { width: 120px; height: 180px; } .coverflow-nav { display: none; } }


            #blogPostPage { padding: 30px 0; }
            #blogPostPage .container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
            #blogPostPage .blog-hero-container { position: relative; width: 100%; height: 450px; background-size: cover; background-position: center; border-radius: 12px; overflow: hidden; display: flex; align-items: flex-end; color: #fff; margin-bottom: 40px; }
            #blogPostPage .blog-hero-container::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
            #blogPostPage .blog-hero-content { position: relative; z-index: 2; padding: 40px; width: 100%; text-align: left; }
            #blogPostPage .blog-hero-title { font-size: 2.8rem; font-weight: 700; line-height: 1.2; margin: 0 0 10px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
            #blogPostPage .blog-hero-meta { font-size: 1.2rem; opacity: 0.8; }
            #blogPostPage .blog-layout-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
            @media (min-width: 992px) { #blogPostPage .blog-layout-grid { grid-template-columns: 1fr 320px; } }
            #blogPostPage .blog-content-main { min-width: 0; }
            #blogPostPage .blog-sidebar { min-width: 0; }
            #blogPostPage .blog-article-content { font-size: 1.5rem; line-height: 1.5; color: #333; }
			#blogPostPage .blog-article-content img {max-width: 100%; height: auto; display: block; margin: 15px 0;}
            #blogPostPage .blog-article-content p:first-of-type::first-letter { font-size: 4rem; font-weight: 700; float: left; line-height: 1; margin-right: 10px; padding-top: 5px; }
            #blogPostPage .blog-article-content h2, #blogPostPage .blog-article-content h3 { font-size: 1.8rem; font-weight: 600; margin: 2em 0 1em; }
            #blogPostPage .blog-sidebar .sidebar-sticky-wrapper { position: -webkit-sticky; position: sticky; top: 96px; }
            .sidebar-widget { margin-bottom: 30px; }
            .sidebar-widget-title { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 15px; padding-bottom: 10px; border-bottom: 1px solid #e5e5e5; }
            .popular-posts-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 15px; }
            .popular-posts-list a { display: flex; align-items: center; gap: 15px; text-decoration: none; }
            .popular-posts-list img { width: 50px; height: 50px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
            .popular-posts-list .title { font-size: 1.4rem; font-weight: 500; color: #333; line-height: 1.3; }
            .related-articles-section { margin-top: 50px; padding-top: 50px; border-top: 1px solid #e5e5e5; }
            .section-title { text-align: center; font-size: 1.8rem; font-weight: 600; margin-bottom: 40px; }
            .related-articles-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
            @media (min-width: 576px) { .related-articles-grid { grid-template-columns: repeat(2, 1fr); } }
            @media (min-width: 992px) { .related-articles-grid { grid-template-columns: repeat(3, 1fr); } }
            .related-article-card { background: #fff; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
            .related-article-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
            .related-article-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
            .related-article-content { padding: 25px; }
            .related-article-title { font-size: 1.6rem; font-weight: 600; margin: 0 0 10px; }
            .related-article-title a { color: #333; text-decoration: none; }
            .related-article-excerpt { font-size: 1.3rem; color: #666; line-height: 1.3; margin-bottom: 20px; }
            .btn-read-more { background: #fdb201; color: #111 !important; padding: 10px 20px; border-radius: 5px; font-weight: 600; display: inline-block; }
            .btn-read-more:hover { text-decoration: none; }
        
/* --- CSS for Blog/Movie List Hover Effect --- */

.blog-list-item .image-hover-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px; /* Optional: adds a slight curve to the image corners */
}

.blog-list-item .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.blog-list-item .image-hover-wrapper:hover .image-overlay {
    opacity: 1;
}

.blog-list-item .overlay-content {
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.blog-list-item .overlay-icon svg {
    width: 60px;
    height: 60px;
    fill: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    padding: 12px;
}

.blog-list-item .overlay-text {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#blogPostPage .blog-article-content iframe {
    padding: 15px 0 15px 0;
    width: 100%; 
    box-sizing: border-box; 
}


    /* Container for the IMDb rating in the meta bar */
    .imdb-rating-group {
        display: flex;
        align-items: center;
    }

    /* This targets the span that the official script populates */
    .imdbRatingPlugin {
        display: flex !important;
        align-items: center;
        background: none !important;
        padding: 0 !important;
    }

    /* This targets the actual link and score the plugin creates */
    .imdbRatingPlugin a {
        color: #fff !important;
        text-decoration: none !important;
        font-size: 14px;
        font-weight: bold;
    }
    
    /* This adds the star emoji before the score */
    .imdbRatingPlugin a::before {
        content: '⭐ ';
        font-size: 16px;
        margin-right: 5px;
        /* The emoji itself won't color, but this sets the space color */
        color: #f5c518;
    }

.imdbRatingStyle2 {
    background-color: #000;
    font-size: 15px;
    color: #666!important;
    padding: 2px;
}

    /* This hides the text like "/10" if IMDb's script adds it */
    .imdbRatingPlugin .small {
        display: none;
    }

    /* CSS for the stats section below the poster */
    .details-stats {
        padding: 15px 10px;
        text-align: center;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
        margin: 15px 0;
    }
    .stat-item {
        font-size: 14px;
        color: #888;
    }
    .stat-item:not(:last-child) {
        margin-bottom: 8px;
    }
    .stat-item i {
        margin-right: 8px;
        color: #666;
    }
    .stat-item strong {
        color: #666;
    }


    .playlist-hero-section {
        padding: 40px 0;
        border-bottom: 1px solid #333;
        margin-bottom: 40px;
    }
    .playlist-hero-cover-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    .playlist-hero-cover-image.placeholder {
        background-color: #222;
        aspect-ratio: 2/3;
    }
    .playlist-title {
        font-size: 3rem;
        font-weight: bold;
        margin-top: 0;
    }
    .playlist-stats {
        display: flex;
        gap: 20px;
        margin: 15px 0;
        color: #999;
    }
    .playlist-stats i {
        margin-right: 8px;
    }
    .playlist-description {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    .btn-play-all {
        font-weight: bold;
        padding: 12px 25px;
    }

    /* New Movie Grid Section */
    .playlist-movies-section .section-title {
        margin-bottom: 30px;
        font-weight: bold;
    }
    .playlist-movies-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }
    .playlist-movie-item .poster-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 4px;
        background-color: #111;
    }
    .playlist-movie-item .poster-wrapper img {
        width: 100%;
        height: auto;
        aspect-ratio: 2/3;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }
    .playlist-movie-item:hover .poster-wrapper img {
        transform: scale(1.05);
    }
    .playlist-movie-item .playlist-item-number {
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,0.8);
        color: #fff;
        padding: 5px 10px;
        font-weight: bold;
        font-size: 16px;
        z-index: 2;
        border-bottom-right-radius: 4px;
    }
    .playlist-movie-item .poster-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-color: rgba(0,0,0,0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
    }
    .playlist-movie-item:hover .poster-overlay {
        opacity: 1;
    }
    .poster-overlay i {
        font-size: 40px;
        color: #fff;
    }
    .playlist-movie-item .movie-title {
        margin-top: 10px;
        font-size: 14px;
        font-weight: bold;
    }
    .playlist-movie-item a { color: #fff; text-decoration: none; }


    #blogPostPage .blog-article-content p::first-letter {
        font-size: inherit !important;
        font-weight: inherit !important;
        float: none !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: inherit !important;
    }

.blog-list-item .image-hover-wrapper img {
    width: 100%; /* Make the image fill its container's width */
    height: 100%; /* Make the image fill its container's height */
    
    /* This defines the cinematic 16:9 aspect ratio */
    aspect-ratio: 16 / 9; 
    
    /* This is the magic property: it makes the image cover the area
       without stretching, cropping if necessary. */
    object-fit: cover; 
    
    border-radius: 8px; /* Optional: adds nice rounded corners */
}

.content-warning-box {
    background-color: #fff8e1; /* A light yellow warning color */
    border: 1px solid #ffecb3;
    border-left: 5px solid #ffc107; /* A strong yellow left border */
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #5c5541;
}

.content-warning-box .warning-title {
    font-size: 16px;
    font-weight: bold;
    color: #c79100;
    margin-top: 0;
    margin-bottom: 8px;
}

.content-warning-box .warning-title .fa-warning {
    margin-right: 8px;
}

.content-warning-box .warning-text {
    margin-bottom: 0;
    line-height: 1.6;
}

/* --- Responsive Visibility Control --- */

/* Mobile First (Default State): Show main warning, hide sidebar one. */
.sidebar-warning-wrapper {
    display: none;
}
.main-content-warning-wrapper {
    display: block;
}

/* Desktop: Show sidebar warning, hide main one. */
/* Adjust 992px to match your theme's breakpoint for when the sidebar appears */
@media (min-width: 992px) {
    .sidebar-warning-wrapper {
        display: block;
    }
    .main-content-warning-wrapper {
        display: none;
    }
}

/* Hide the wrapper entirely if it's empty (i.e., not a horror movie) */
.main-content-warning-wrapper:empty,
.sidebar-warning-wrapper:empty {
    display: none;
}

/* ===================================================
   Styles for Homepage Featured Content Block (v2)
   (Used for Blog, Popcorn, and Page modules)
   =================================================== */

/* Main container for the element */
.featured-content-block {
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}

/*
 * --- MODIFICATION START ---
 * These rules now create a responsive 16:9 aspect ratio box.
*/
.featured-content-block .fcb-image-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 5px;
    /* These two lines create the 16:9 box (9 / 16 = 0.5625) */
    height: 0;
    padding-top: 56.25%; 
    background-color: #f0f0f0; /* Shows a gray box while the image loads */
}

/*
 * The <img> is now positioned absolutely to fill the 16:9 box.
 * The 'object-fit' property is key to preventing image stretching.
*/
.featured-content-block .fcb-image-wrapper img {
    /* Position image inside the wrapper box */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* This crops the image to fit the 16:9 box without distortion */
    object-fit: cover; 
    transition: transform 0.4s ease;
}
/* --- MODIFICATION END --- */


/* Zoom-in effect on hover (no change here) */
.featured-content-block .fcb-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Fallback placeholder (no change here) */
.featured-content-block .fcb-image-placeholder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background-color: #f0f0f0;
    border-radius: 5px;
}

/* The dark overlay (no change here) */
.featured-content-block .fcb-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

/* Show overlay on hover (no change here) */
.featured-content-block .fcb-image-wrapper:hover .fcb-image-overlay {
    opacity: 1;
}

/* Content inside the overlay (no change here) */
.featured-content-block .fcb-overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(10px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

/* Animate overlay content into view (no change here) */
.featured-content-block .fcb-image-wrapper:hover .fcb-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.featured-content-block .fcb-overlay-icon svg {
    width: 45px;
    height: 45px;
    fill: #fff;
    margin-bottom: 10px;
}

.featured-content-block .fcb-overlay-text {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Styling for the text content column (no changes here) */
.featured-content-block .fcb-text-content {
    padding: 20px;
    text-align: center;
}
@media (min-width: 992px) {
    .featured-content-block .fcb-text-content {
        padding: 40px;
    }
}

.featured-content-block .fcb-section-heading {
    margin-top: 0;
}

.featured-content-block .fcb-post-title {
    font-size: 24px;
    font-weight: bold;
}

.featured-content-block .fcb-post-title a {
    color: #333;
    text-decoration: none;
}
.featured-content-block .fcb-post-title a:hover {
    color: #000;
}

.featured-content-block .fcb-post-meta {
    margin-bottom: 15px;
}

.featured-content-block .fcb-read-more-wrap {
    margin-top: 20px;
}

.page-gallery-wrapper {
    margin: 5px 0;
    padding-top: 5px;
    /*border-top: 1px solid #333; */
}
.page-gallery-wrapper h3 {
    margin-bottom: 20px;
    font-weight: bold;
}
.gallery-thumb {
    margin-bottom: 20px;
}
.gallery-thumb a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    border: none; /* Tamniji obrub */
}
.gallery-thumb img {
    width: 100%;
    height: 200px; /* Fiksna visina za uniformnost */
    object-fit: cover; /* Slika će ispuniti prostor bez deformacije */
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-thumb a:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

/* ========================================= */
/* CSS for Expert Sidebar Movies Widget      */
/* ========================================= */

.related-movies-widget .related-movies-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-movies-widget .related-movies-list li {
    margin-bottom: 15px;
}

.related-movies-widget .related-movies-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
    border-radius: 5px;
}

.related-movies-widget .related-movies-list li a:hover {
    background-color: rgba(0,0,0,0.05); /* Or a theme-appropriate hover color */
}

.related-movies-widget .related-movies-list li img {
    width: 60px; /* Adjust size as needed */
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0; /* Prevents image from shrinking */
    margin-right: 12px;
}

.related-movies-widget .related-movies-list li .title {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.3;
}

/* General Widget Styling */
.sidebar-widget {
    margin-bottom: 35px; /* Consistent spacing between widgets */
}

.sidebar-widget-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0; /* Or your site's border color */
}

/* List Style for BOTH Popular Posts and Related Movies */
.popular-posts-list,
.related-movies-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-posts-list li,
.related-movies-list li {
    margin-bottom: 15px;
}

.popular-posts-list li a,
.related-movies-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
    border-radius: 5px;
}

.popular-posts-list li a:hover,
.related-movies-list li a:hover {
    text-decoration: none;
    background-color: #f5f5f5; /* Light grey hover effect, change if your background is dark */
}

/* Image styling for BOTH widgets */
.popular-posts-list li img,
.related-movies-list li img {
    width: 80px;  /* Slightly wider for better look */
    height: 80px; /* Square for popular posts */
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    margin-right: 15px;
    background-color: #e0e0e0;
}

/* Specific override for Movie posters to maintain aspect ratio */
.related-movies-list li img {
    height: 120px; /* Taller for poster aspect ratio */
    width: 80px;
}


/* Title styling for BOTH widgets */
.popular-posts-list li .title,
.related-movies-list li .title {
    font-weight: bold;
    font-size: 15px;
    line-height: 1.3;
}

#youtube-playlist-horizontal {
    margin-top: 20px;
    margin-bottom: 25px;
}
#youtube-playlist-horizontal h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}
.playlist-scroller {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 20px; /* Povećan prostor za bolju vidljivost scrollbara */
    /* Najuočljivije boje za scrollbar */
   /* scrollbar-color: #999 #333; /* thumb track */
    scrollbar-width: auto; /* Malo deblji scrollbar na Firefoxu */
}
/* Webkit (Chrome, Safari, Edge) scrollbar stilovi */
.playlist-scroller::-webkit-scrollbar {
    height: 20px; /* Malo deblji scrollbar */
}
.playlist-scroller::-webkit-scrollbar-track {
    background: #111;
    border-radius: 6px;
}
.playlist-scroller::-webkit-scrollbar-thumb {
    background-color: #999; /* Puno svjetlija boja */
    border-radius: 6px;
    border: 3px solid #111; /* Stvara efekt "plutajućeg" scrollbara */
}
.playlist-scroller::-webkit-scrollbar-thumb:hover {
    background-color: #ccc; /* Još svjetliji na hover */
}
.playlist-item {
    flex: 0 0 180px;
    margin-right: 15px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    white-space: normal;
    display: inline-block;
    vertical-align: top;
}
.playlist-item:hover {
    transform: translateY(-5px);
}
.playlist-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 8px;
    border: 1px solid #444; /* Malo svjetliji obrub */
}
.playlist-item-title {
    font-size: 13px;
    line-height: 1.3;
    color: #000 !important;
    height: 3.9em;
    overflow: hidden;
}

            #youtube-player-container {
                position: relative;
                width: 100%;
                padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
                height: 0;
            }
            #youtube-player {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }
            /* Media Query for mobile devices */
            @media (max-width: 768px) {
                #youtube-player-container {
                    padding-bottom: 75%; /* 4:3 Aspect Ratio */
                }
            }

/* --- Styling for Google AdSense Auto Ads --- */
/* 1. Prvo, resetirajmo sam spremnik za oglas kako bismo uklonili neželjene linije /
ins.adsbygoogle[data-ad-status="filled"] {
display: block !important;
margin: 15px 0 37px 0 !important;    / Gornja margina /
text-align: center;
text-decoration: none !important; / KLJUČNO: Uklanja podcrtavanje s cijelog bloka /
border: none !important;          / KLJUČNO: Uklanja i bilo kakve obrube */
}
/* 2. Sada dodajemo naslov i našu vlastitu, sigurnu liniju ispod njega /
ins.adsbygoogle[data-ad-status="filled"]::before {
content: 'Advertisement';  / Tekst naslova /
display: block;
font-size: 11px;
color: #888888;
letter-spacing: 1px;
/ width: 20%;               Širina linije (prilagodite po želji) /
/ margin: 0 auto 10px auto; Centriranje i razmak ispod linije */
/*padding-bottom: 8px;       Razmak između teksta i linije */
/*border-bottom: 1px solid #e0e0e0;  Sigurna linija koja ne može "pobjeći" */
}