/* === MODERNIZUOTAS ORANŽINIS DIZAINAS (V2.1) === */

/* Bendras fonas */
body {
    background: #10141b;
    color: #c9d1d9;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Nuorodos */
a {
    color: #f39c12;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
a:hover {
    color: #ffffff !important;
}

/* Antraštės */
h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
}
h2 {
    font-size: 28px;
    font-weight: 700;
    color: #f0f6fc;
}

/* Navigacija (Header) */
.header {
    background: rgba(16, 20, 27, 0.98);
    border-bottom: 1px solid #2f343d;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px; /* Fiksuotas aukštis, kad neišsitampytų */
}

.hmenu { display: flex; list-style: none; margin: 0; padding: 0; align-items: center; }

.hmenu > li > a {
    color: #c9d1d9;
    font-weight: 600;
    padding: 0 18px;
    height: 70px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.hmenu > li:hover > a, .hmenu > li > a.is-active {
    color: #f39c12 !important;
    box-shadow: inset 0 -3px #f39c12;
}

/* Kortelės (filmai) */
.th-in {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: #1a1e26;
    border: 1px solid rgba(243, 156, 18, 0.1);
    transition: 0.3s;
}
.th-in:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border-color: #f39c12;
}

/* Mygtukai */
.button, .btn, .slice-btn span {
    background: #f39c12 !important;
    color: #fff !important;
    border-radius: 6px;
    font-weight: 700;
    padding: 12px 24px;
    transition: 0.3s;
    border: none !important;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
}
.button:hover, .btn:hover {
    background: #e67e22 !important;
    transform: translateY(-2px);
}

/* Paieškos laukelis (FIX: Panaikinta mėlyna spalva) */
.search-box input, .search-wrap input {
    background-color: #1a1e26 !important;
    border: 1px solid #2f343d !important;
    color: #ffffff !important;
    border-radius: 6px;
    height: 40px;
    padding: 0 15px;
    outline: none !important; /* Panaikina mėlyną naršyklės apvadą */
    transition: 0.3s;
}

.search-box input:focus, .search-wrap input:focus {
    border-color: #f39c12 !important;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.2);
}

/* SEO blokas */
.desc-text {
    background: #1a1e26;
    border-left: 4px solid #f39c12;
    padding: 20px;
    border-radius: 8px;
    color: #b2becd;
}

/* "Į viršų" mygtukas */
#gotop, .go-up {
    background: #f39c12 !important;
    color: #fff !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
#gotop:hover { background: #e67e22 !important; }

/* Mobilaus meniu piktograma */
@media screen and (max-width: 1220px) {
    .btn-menu { color: #f39c12 !important; font-size: 30px; }
}

/* Grotuvo skirtukai (Tabs) */
.fplayer .tabs-sel span.current {
    background-color: #f39c12 !important;
    color: #fff !important;
}
.fplayer .tabs-sel span:hover { color: #f39c12; }

/* FIX: Treilerio paslėpimas */
.js .tabs-b { display: none; }
.js .tabs-b.visible, .js .tabs-b.active { display: block !important; }