/* Project-specific overrides/extensions (kept intentionally small).
   Core visual language is centralized in design-system.css */

/* Additional Namako.fun specific styles */

.content-section {
  margin-bottom: 60px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.section-link {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.section-link:hover {
  opacity: 0.8;
}

/* Movie/Series Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

@media (max-width: 1200px) {
  .content-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }
}

/* Authentication Pages */
.auth_logo_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 20px;
  width: 100%;
}

.auth_logo_link {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.auth_logo_link .icon,
.auth_logo_link .svg_logo,
.auth_logo_link .logo_img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}


/* Base Layout Overrides */
/* Carousel/Slider */
.content-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 16px;
}

.content-carousel::-webkit-scrollbar {
  height: 8px;
}

.content-carousel::-webkit-scrollbar-track {
  background: var(--bg-elevated);
  border-radius: 4px;
}

.content-carousel::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: 4px;
}

.content-carousel::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

.carousel-item {
  flex: 0 0 200px;
}

/* Single Movie/Series Hero */
.single-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 60px 0;
  margin-bottom: 60px;
}

.single-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0b0e0f 0%, rgba(11,14,15,0.9) 50%, rgba(11,14,15,0.7) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.single-hero .container {
  position: relative;
  z-index: 1;
}

.single-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.movie-poster {
  width: 300px;
  flex-shrink: 0;
}

.movie-poster img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.movie-info {
  flex: 1;
}

.movie-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.movie-original-title {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.movie-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.movie-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(245, 173, 17, 0.15);
  border: 1px solid rgba(245, 173, 17, 0.3);
  border-radius: 6px;
  color: var(--color-primary);
  font-weight: 700;
}

.genre-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.genre-tag {
  padding: 6px 12px;
  background: rgba(245, 173, 17, 0.1);
  border: 1px solid rgba(245, 173, 17, 0.3);
  border-radius: 6px;
  font-size: 13px;
  color: var(--color-primary);
}

.movie-credits {
  margin-bottom: 24px;
}

.credit-item {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}

.credit-label {
  color: var(--text-muted);
  min-width: 80px;
}

.credit-value {
  color: var(--text-secondary);
}

.movie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-numbers {
  padding: 10px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.page-numbers:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.page-numbers.current {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
  color: var(--text-inverse);
  border-color: var(--color-primary);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--color-primary);
}

.breadcrumbs span {
  color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .single-content {
    flex-direction: column;
  }
  
  .movie-poster {
    width: 200px;
    margin: 0 auto;
  }
  
  .movie-title {
    font-size: 1.75rem;
  }
  
  .movie-actions {
    flex-direction: column;
  }
}

/* FilmKio/Namako dynamic homepage refinements */
.main_page_container.home_page {
  width: 100%;
  overflow: hidden;
}

.filmkio_home_slider {
  background: transparent !important;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  display: flex;
  margin: 0 auto 50px;
  max-width: 2544px;
  height: 700px; /* Fixed height to prevent jumping */
  overflow: hidden;
  position: relative;
  z-index: 100;
}


.filmkio_home_slider .in_home_slider {
  display: flex;
  width: 100%;
  height: 100%;
}


.filmkio_home_slider .data_for_show {
  width: 45%;
  height: 100%;
  z-index: 10;
}


.filmkio_home_slider .right_side_home_slider {
  width: 55%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 5;
  padding-right: 20px;
  background: black;
}


.filmkio_home_slider .home_owl_slider.tm-home-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-height: 630px;
  padding: 20px;
  scrollbar-width: none;
  justify-content: flex-start;
}

.filmkio_home_slider .home_owl_slider.tm-home-carousel::-webkit-scrollbar {
  display: none;
}

.filmkio_home_slider .home_owl_slider.tm-home-carousel .item_loop_post {
  flex: 0 0 calc(33.333% - 10px);
  width: calc(33.333% - 10px);
  margin: 0;
  transition: transform 0.3s ease;
}

.filmkio_home_slider .home_owl_slider.tm-home-carousel .item_loop_post:hover {
  transform: translateY(-5px);
}

/* Home banner only: slightly taller standard poster ratio, subtle lift in brightness */
.filmkio_home_slider .home_owl_slider.tm-home-carousel .item_loop_post .bgcover {
  width: 100%;
  min-height: 284px;
  height: auto !important;
  aspect-ratio: 2 / 3;
  background-size: cover !important;
  background-position: center center !important;
  border-radius: 12px;
  filter: brightness(1.05);
  box-sizing: border-box;
}

.filmkio_home_slider .image_owl_home {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.filmkio_home_slider .image_owl_home:after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, 
      #0b0e0f 0%, 
      rgba(11, 14, 15, 0.9) 35%, 
      rgba(11, 14, 15, 0.2) 65%, 
      #000 100%),

    linear-gradient(0deg, 
      #0b0e0f 0%, 
      rgba(11, 14, 15, 0) 40%);
  z-index: 1;
}


.filmkio_home_slider .image_owl_home img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center;
}


.filmkio_home_slider .slide_data_text {
  position: relative;
  z-index: 1;
  padding: 180px 4.8rem 70px 20px;
}

.filmkio_home_slider .slide_data_text h2 a {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

/* IMDB Rating Box like Namako */
.filmkio_home_slider .imdb_rate_box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 12px;
  max-width: fit-content;
  backdrop-filter: blur(4px);
}

.filmkio_home_slider .imdb_rate_val {
  color: #f5ad11;
  font-size: 1.6rem;
  font-weight: 800;
}

.filmkio_home_slider .imdb_recommend {
  color: #ccc;
  font-size: 0.95rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 15px;
}

.filmkio_home_slider .slide_data_text .summary_text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.9;
  margin: 25px 0;
  max-width: 550px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.filmkio_home_slider .btnmore {
  display: inline-block;
  background: #f5ad11;
  color: #0b0e0f;
  padding: 14px 35px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.filmkio_home_slider .btnmore:hover {
  background: #fff;
  transform: translateY(-2px);
}


.tm-empty-state {
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: 16px;
  color: #aaa;
  padding: 30px;
  text-align: center;
  width: 100%;
}

/* ==========================================================================
   Advanced Search Panel Styles (Namako Parity)
   ========================================================================== */

.adv_options_search {
    background-color: #141414;
    border-radius: 0.5rem;
    box-shadow: 0 0.4rem 1rem 0 rgba(0, 0, 0, 0.6);
    left: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    transition: all 0.3s ease;
    visibility: hidden;
    z-index: 100;
    width: 22rem;
    margin-top: 10px;
}

.adv_options_search.open {
    opacity: 1;
    transform: translateY(0.8rem);
    visibility: visible;
}

.adv_options_search:before {
    border: 10px solid transparent;
    border-bottom-color: #141414;
    bottom: 99.9%;
    content: "";
    display: block;
    height: 0;
    left: 20px;
    position: absolute;
    width: 0;
    z-index: 2;
}

.adv_options_search .content_row {
    display: flex;
    flex-flow: column nowrap;
    padding: 20px 8px 0;
}

.adv_options_search .content_row .row {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.adv_options_search .content_row .row .item_search {
    display: inline-flex;
    justify-content: space-between;
    margin: 0.4rem;
    position: relative;
    width: 100%;
}

.adv_options_search .content_row .row .item_search .sep {
    color: #f0f0f0;
    line-height: 48px;
    width: 5%;
    text-align: center;
}

.adv_options_search .btnadvancedSearch {
    align-content: center;
    align-items: center;
    background: #f5ad11;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: none;
    color: #1e1e1e;
    cursor: pointer;
    display: flex;
    height: 3rem;
    justify-content: center;
    outline: none;
    padding: 0.4rem 1.6rem;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    font-weight: 600;
    margin-bottom: 20px;
}

.adv_options_search .btnadvancedSearch:hover {
    background: #dc9909;
}

/* Dropdown Styles */
/* Advanced Search Panel */
.adv_options_search {
  background-color: #141414;
  border-radius: .5rem;
  box-shadow: 0 .4rem 1rem 0 rgba(0,0,0,.6);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  transition: all .3s ease;
  visibility: hidden;
  z-index: 100;
  width: 100%;
  min-width: 320px;
}

@media (min-width: 1024px) {
  .adv_options_search {
    width: 600px;
    left: auto;
    right: 0;
  }
}

.adv_options_search.open {
  opacity: 1;
  transform: translateY(.8rem);
  visibility: visible;
}

.adv_options_search:before {
  border: 10px solid transparent;
  border-bottom-color: #141414;
  bottom: 99.9%;
  content: "";
  display: block;
  height: 0;
  left: 20px;
  position: absolute;
  width: 0;
  z-index: 2;
}

.adv_options_search .content_row {
  display: flex;
  flex-flow: column nowrap;
  padding: 20px 8px 0;
}

.adv_options_search .row {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
}

.adv_options_search .item_search {
  display: inline-flex;
  justify-content: space-between;
  margin: .4rem;
  position: relative;
  width: 100%;
}

.dropdown_filmkio {
    display: flex;
    user-select: none;
    width: 100%;
    position: relative;
}

.dropdown_filmkio .label_dropdown {
    background-color: #141414;
    border-radius: 0.5rem;
    color: #787878;
    padding: 0 0.4rem;
    pointer-events: none;
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-2rem) scale(0.9);
    transition: all 0.3s ease;
    white-space: nowrap;
    will-change: transform;
    z-index: 2;
    font-size: 0.85rem;
}

.dropdown_filmkio .main_dropdown {
    align-items: center;
    background: none;
    border: 0.1rem solid #333;
    border-radius: 0.5rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    height: 3rem;
    justify-content: space-between;
    outline: 0;
    padding: 0 0.8rem;
    position: relative;
    transition: all 0.2s ease;
    width: 100%;
}

.dropdown_filmkio .main_dropdown:hover {
    border-color: #f5ad11;
}

.dropdown_filmkio .main_dropdown .dropdown_value {
    color: #f0f0f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
}

.dropdown_filmkio .main_dropdown .dropdown_icon {
    transform: rotate(0deg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.dropdown_filmkio.open .main_dropdown .dropdown_icon {
    transform: rotate(180deg);
}

.dropdown_filmkio .main_dropdown .dropdown_icon svg {
    stroke: #fff;
    height: 18px;
    width: 18px;
}

.dropdown_filmkio .dropdown_body {
    background-color: #1a1a1a;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.8);
    display: flex;
    flex-flow: column nowrap;
    max-height: 15rem;
    opacity: 0;
    overflow-y: auto;
    padding: 0.5rem;
    position: absolute;
    top: 110%;
    transform: translateY(10px);
    transition: all 0.3s ease;
    visibility: hidden;
    width: 100%;
    z-index: 110;
}

.dropdown_filmkio.open .dropdown_body {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.dropdown_filmkio .dropdown_body .filter_input {
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 0.3rem;
    margin-bottom: 0.5rem;
    outline: 0;
    padding: 0.5rem 0.8rem;
    color: #fff;
    font-size: 0.85rem;
}

.dropdown_filmkio .dropdown_body .item_dropdown_body,
.dropdown_filmkio .dropdown_body .item_dropdown_genre_body {
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    transition: all 0.2s ease;
    width: 100%;
    border-radius: 0.3rem;
    font-size: 0.85rem;
}

.dropdown_filmkio .dropdown_body .item_dropdown_body.active,
.dropdown_filmkio .dropdown_body .item_dropdown_body:hover,
.dropdown_filmkio .dropdown_body .item_dropdown_genre_body.active,
.dropdown_filmkio .dropdown_body .item_dropdown_genre_body:hover {
    background-color: #232729;
    color: #f5ad11;
}

/* Float Label Input */
.floatlabelinput {
    position: relative;
    width: 100%;
}

.floatlabelinput input {
    align-items: center;
    background: none;
    border: 0.1rem solid #333;
    border-radius: 0.5rem;
    color: #f0f0f0;
    display: flex;
    flex-flow: row nowrap;
    height: 3rem;
    outline: 0;
    padding: 0 0.8rem;
    transition: all 0.2s ease;
    width: 100%;
}

.floatlabelinput input:focus {
    border-color: #f5ad11;
}

.floatlabelinput .label_placeholder {
    background-color: #141414;
    border-radius: 0.5rem;
    color: #787878;
    padding: 0 0.4rem;
    pointer-events: none;
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-2rem) scale(0.9);
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 2;
    font-size: 0.85rem;
}

/* Release Year Inputs */
.release_put {
    display: flex;
    width: 100%;
    align-items: center;
}

.release_put .bd_normal {
    color: #787878;
    margin: 0 0.5rem;
    white-space: nowrap;
    font-size: 0.85rem;
}

.release_put .item_field_put {
    flex: 1;
    position: relative;
}

.release_put input {
    background: none;
    border: 0.1rem solid #333;
    border-radius: 0.5rem;
    color: #f0f0f0;
    height: 3rem;
    outline: 0;
    padding: 0 0.8rem;
    width: 100%;
    font-size: 0.9rem;
}

.release_put input:focus {
    border-color: #f5ad11;
}

.release_put .label_placeholder {
    background: #141414;
    color: #787878;
    font-size: 0.8rem;
    padding: 0 5px;
    position: absolute;
    right: 10px;
    top: -10px;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .adv_options_search {
        width: 100%;
        min-width: 0;
        left: 0;
        right: 0;
        position: fixed;
        bottom: 0;
        top: auto;
        border-radius: 1.5rem 1.5rem 0 0;
        max-height: 80vh;
        overflow-y: auto;
        padding-bottom: 30px;
    }
    
    .adv_options_search .content_row .row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(6px, 2vw, 10px);
    }
    
    .adv_options_search .content_row .row .item_search {
        margin: 0 0 clamp(8px, 2vw, 12px);
        min-width: 0;
    }

    .adv_options_search .content_row .row .item_search.btnSearchmobile,
    .adv_options_search .content_row .row.mobile_only .item_search {
        grid-column: 1 / -1;
    }
    
    .hide_on_mobile {
        display: none !important;
    }
}

/* Notification Alert */
.notification_alert {
    background-color: #141414;
    border-radius: 0.5rem;
    bottom: 20px;
    box-shadow: 0 0.5rem 2rem 0 rgba(0,0,0,0.8);
    display: flex;
    left: -100%;
    max-width: 300px;
    opacity: 0;
    padding: 15px 20px;
    position: fixed;
    transition: all 0.4s ease;
    visibility: hidden;
    z-index: 9999;
    border-right: 4px solid #f5ad11;
}

.notification_alert.show,
.notification_alert.active {
    left: 20px;
    opacity: 1;
    visibility: visible;
}

.notification_alert .text_mes {
    color: #f0f0f0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Dashboard Styles --- */
.filmkio_dashboard {
    background: #0f0f0f;
    min-height: 100vh;
}

.dashboard_users {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.head_dashboard {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.left_side_head_dashboard {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 40px;
}

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

.menu_head_holder ul li {
    display: flex;
    align-items: center;
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.menu_head_holder ul li a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
}

.menu_head_holder ul li a svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
}

.menu_head_holder ul li svg.icon_arrow {
    width: 12px;
    height: 12px;
    margin-right: 15px;
}

.main_dashboard {
    display: flex;
    padding: 40px 0;
}

.sidebar_dashboard {
    width: 300px;
    flex-shrink: 0;
}

.inner_sidebar_dashboard {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
}

.head_sidebar {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar_avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    margin-left: 15px;
}

.head_sidebar span {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.body_sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.body_sidebar ul li {
    margin-bottom: 5px;
}

.body_sidebar ul li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.body_sidebar ul li a svg {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.body_sidebar ul li a:hover,
.body_sidebar ul li.active a {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.body_sidebar ul li.active a {
    background: var(--primary-color);
    color: #fff;
}

.body_sidebar ul li.log_out_link_dash a {
    color: #ff4b4b;
}

.body_sidebar ul li.log_out_link_dash a:hover {
    background: rgba(255, 75, 75, 0.1);
}

.content_dashboard {
    flex: 1;
    margin-right: 30px;
}

.message_help_dashboard {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.right_side_message {
    display: flex;
    align-items: center;
}

.icon_holder_message {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-left: 20px;
}

.icon_holder_message svg {
    width: 24px;
    height: 24px;
}

.text_holder_message h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.text_holder_message p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.btn_message_dash {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn_message_dash:hover {
    filter: brightness(1.2);
}

.top_home_dashboard_blocks {
    margin-bottom: 30px;
}

.item_home_dash_block {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.item_home_dash_block:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.item_home_dash_block .icon_holder {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-left: 20px;
}

.item_home_dash_block .icon_holder svg {
    width: 28px;
    height: 28px;
}

.item_home_dash_block .data_holder h3 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 2px;
}

.item_home_dash_block .data_holder span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.recent_watched_dashboard {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.head_section_dash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.head_section_dash h3 {
    color: #fff;
    font-size: 18px;
}

.head_section_dash a {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
}

.item_watched_dash {
    margin-bottom: 20px;
}

.item_watched_dash a {
    text-decoration: none;
}

.item_watched_dash .img_holder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 12px;
}

.item_watched_dash .img_holder img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.item_watched_dash a:hover img {
    transform: scale(1.1);
}

.item_watched_dash span {
    display: block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty_state_dash {
    text-align: center;
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.3);
}

/* Dashboard Header Search */
.left_side_header {
    display: flex;
    align-items: center;
}

.left_btn_header {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.left_btn_header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.left_btn_header svg {
    width: 20px;
    height: 20px;
}

.search_box_header {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-right: 12px;
    width: 300px;
}

.inner_search_box {
    display: flex;
    align-items: center;
    flex: 1;
}

.str_search_int {
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    padding-right: 10px;
    width: 100%;
    outline: none;
}

.btn_submit_holder button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
}

.btn_login_user:hover .drop_user_nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop_user_nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.inner_drop_user_nav {
    padding: 10px;
}

.user_nav_head {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
}

.leftover_sub_text span {
    color: #4caf50;
    font-size: 12px;
    font-weight: bold;
}

.not_subscribed_text span {
    color: #f44336;
    font-size: 12px;
    font-weight: bold;
}

.user_nav_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user_nav_links li a {
    display: block;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user_nav_links li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
}

/* Dashboard Breadcrumb and Header UI */
.menu_head_holder ul li span {
    color: #f3f5f6;
    font-size: 14px;
    font-weight: 500;
}

.left_side_head_dashboard .left_btn_header {
    background: #0d0d0d !important;
    border: 2px dashed #1f292e !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
}


.left_side_head_dashboard .left_btn_header:hover {
    border-color: var(--primary-color) !important;
}


/* Responsive Dashboard */
@media (max-width: 992px) {
    .main_dashboard {
        flex-direction: column;
    }
    .sidebar_dashboard {
        width: 100%;
        margin-bottom: 30px;
    }
    .content_dashboard {
        margin-right: 0;
    }
}

/* Dashboard Base Layout */
.dashboard_users {
    min-height: 100vh;
    background: #0b0e0f;
}

.dashboard_users .head_dashboard {
    height: 80px;
    background: rgba(10, 13, 16, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}


body.admin-bar .dashboard_users .head_dashboard {
    top: 32px;
}

.dashboard_users .head_dashboard .right_side_head {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}


.dashboard_users .head_dashboard .right_side_head .logo_holder .icon {
    height: 34px;
    width: 140px;
}

.dashboard_users .head_dashboard .left_side_head_dashboard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    padding: 0 30px;
}


.dashboard_users .head_dashboard .left_side_head_dashboard .menu_head_holder {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    white-space: nowrap;
}

.dashboard_users .head_dashboard .left_side_head_dashboard .menu_head_holder ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard_users .head_dashboard .left_side_head_dashboard .menu_head_holder ul li {
    display: flex;
    align-items: center;
}

.dashboard_users .head_dashboard .left_side_head_dashboard .menu_head_holder ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all 0.3s ease;
}

.dashboard_users .head_dashboard .left_side_head_dashboard .menu_head_holder ul li a:hover {
    color: var(--primary-color);
}

.dashboard_users .head_dashboard .left_side_head_dashboard .menu_head_holder ul li .icon_home {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.dashboard_users .head_dashboard .left_side_head_dashboard .menu_head_holder ul li .icon_arrow {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.3);
}

.dashboard_users .head_dashboard .left_side_head_dashboard .menu_head_holder ul li span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}


/* Main Dashboard Structure */
.dashboard_users .main_dashboard {
    display: flex;
    flex-wrap: wrap;
}

.dashboard_users .main_dashboard .sidebar_dashboard {
    display: flex;
    width: 260px;
    flex-shrink: 0;
}


.dashboard_users .main_dashboard .inner_main_dashboard {
    display: flex;
    flex: 1;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    min-height: calc(100vh - 80px);
    position: relative;
}


/* Sidebar Styles */
.sidebar_dashboard .inner_sidebar_dashboard {
    width: 100%;
}

.sidebar_dashboard .inner_sidebar_dashboard .head_sidebar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
}

.sidebar_dashboard .inner_sidebar_dashboard .head_sidebar .sidebar_avatar {
    align-items: center;
    background: #0b0d0f;
    border: 2px dashed #1f292e;
    border-radius: 10%;
    display: flex;
    flex-wrap: wrap;
    font-size: 2.5rem;
    font-weight: 700;
    height: 100px;
    justify-content: center;
    width: 100px;
}

.sidebar_dashboard .inner_sidebar_dashboard .head_sidebar span {
    direction: ltr;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 20px;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    color: #fff;
}

.sidebar_dashboard .inner_sidebar_dashboard .body_sidebar {
    width: 100%;
}

.sidebar_dashboard .inner_sidebar_dashboard .body_sidebar ul li {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.sidebar_dashboard .inner_sidebar_dashboard .body_sidebar ul li a {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 24px 30px 20px;
    position: relative;
    width: 100%;
    color: #cfd1d0;
    display: flex;
    align-items: center;
}

.sidebar_dashboard .inner_sidebar_dashboard .body_sidebar ul li .icon {
    fill: #cfd1d0;
    height: 23px;
    margin-left: 12px;
    transition: all 0.3s ease;
    width: 23px;
}

.sidebar_dashboard .inner_sidebar_dashboard .body_sidebar ul li.active {
    border: 2px dashed #1f292e;
    border-left: none !important;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    margin-right: -2px;
    background: #0f0f0f;
    position: relative;
    z-index: 10;
    color: var(--primary-color);
}


.sidebar_dashboard .inner_sidebar_dashboard .body_sidebar ul li.active a {
    color: var(--primary-color);
}

.sidebar_dashboard .inner_sidebar_dashboard .body_sidebar ul li.active .icon {
    stroke: var(--primary-color) !important;
}


.sidebar_dashboard .inner_sidebar_dashboard .body_sidebar ul li.active a:before {
    background-color: #0f0f0f;
    border-bottom: 2px dashed #1f292e;
    border-bottom-left-radius: 1rem;
    border-left: 2px dashed #1f292e;
    box-shadow: -5px 5px 0 #0f0f0f;
    content: "";
    display: block;
    height: 30px;
    left: 2px;
    position: absolute;
    top: -32px;
    width: 30px;
}

.sidebar_dashboard .inner_sidebar_dashboard .body_sidebar ul li.active a:after {
    background-color: #0f0f0f;
    border-left: 2px dashed #1f292e;
    border-top: 2px dashed #1f292e;
    border-top-left-radius: 1rem;
    bottom: -32px;
    box-shadow: -5px -5px 0 #0f0f0f;
    content: "";
    display: block;
    height: 30px;
    left: 2px;
    position: absolute;
    width: 30px;
}



/* Content Area Common Styles */
.message_help_dashboard {
    align-content: center;
    align-items: center;
    border-bottom: 2px dashed #1f292e;
    display: flex;
    flex-wrap: wrap;
    font-size: 1rem;
    padding: 20px 40px;
    width: 100%;
}

.message_help_dashboard .right_side {
    display: flex;
    flex: 1;
    color: #fff;
}

.message_help_dashboard .left_side {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

.today_date {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
}

.today_date .icon {
    fill: #fff;
    width: 18px;
    height: 18px;
    margin-left: 8px;
}

.home_dashboard {
    padding: 30px 40px;
    width: 100%;
}

.top_home_dashboard_blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.style_block_dashboard {
    background: #131616;
    border: 2px dashed hsla(0,0%,59%,.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.style_block_dashboard.full {
    width: 100%;
}

.style_block_dashboard.no_filter_domain {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.style_block_dashboard.no_filter_domain span {
    margin-left: 10px;
    color: #fff;
}

.style_block_dashboard.no_filter_domain a {
    color: var(--primary-color);
}

.style_block_dashboard.subscription_block {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.style_block_dashboard.tickets_block {
    width: calc(50% - 10px);
}

/* Subscription Gauge */
.gauge_container {
    width: 150px;
    margin-bottom: 20px;
}

.gauge {
    position: relative;
    text-align: center;
}

.gauge .percentage {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.gauge svg path.background {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 10;
    stroke-linecap: round;
}

.gauge svg path.progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
}

.subscription_block_texts {
    text-align: center;
    width: 100%;
}

.subscribe_status_message {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subscribe_status_message.notactive {
    color: #e93232;
}

.subscribe_status_message.active {
    color: #279b2c;
}

/* Link Boxes */
.block_links_dash {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.link_box {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #fff;
}

.link_box .text_holder {
    display: flex;
    flex-direction: column;
}

.link_box_count {
    font-size: 1.8rem;
    font-weight: 700;
}

.link_box_label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.link_box_icon .icon {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
}

/* Social Links */
.social_link_dash {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.link_box.soical {
    background: rgba(255, 255, 255, 0.02);
}

/* Responsive Dashboard Styles */
@media screen and (max-width: 1200px) {
    .dashboard_users .head_dashboard .right_side_head,
    .dashboard_users .main_dashboard .sidebar_dashboard {
        width: 20%;
    }
}

@media screen and (max-width: 992px) {
    .dashboard_users .head_dashboard .right_side_head {
        display: none;
    }
    .dashboard_users .main_dashboard .sidebar_dashboard {
        display: none;
    }
    .dashboard_users .head_dashboard .left_side_head_dashboard {
        padding: 0 20px;
    }
    .dashboard_users .main_dashboard .inner_main_dashboard {
        border-right: none;
        right: 0;
    }
    .block_links_dash {
        grid-template-columns: 1fr 1fr;
    }
    .style_block_dashboard.subscription_block,
    .style_block_dashboard.tickets_block {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .block_links_dash, .social_link_dash {
        grid-template-columns: 1fr;
    }
    .message_help_dashboard {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .message_help_dashboard .left_side {
        justify-content: center;
    }
}

/* Sections Megamenu (sub_menu_pages) */
.sub_menu_pages {
    position: absolute;
    top: 100%;
    right: 0;
    width: 0;
    z-index: 2004;
}

.sub_menu_pages .inner_sub_menu_pages {
    background-color: rgba(10, 13, 16, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-top: 15px;
    min-width: 650px;
    opacity: 0;
    padding: 10px;
    position: absolute;
    right: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    overflow: hidden;
    transform: translateY(10px);
}

.has_child_category:hover .sub_menu_pages .inner_sub_menu_pages {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub_menu_pages .inner_sub_menu_pages .title_sub_menu {
    width: 180px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
}

.sub_menu_pages .inner_sub_menu_pages .title_sub_menu .item_title_submenu {
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border-radius: 12px;
    margin: 2px 8px;
}

.sub_menu_pages .inner_sub_menu_pages .title_sub_menu .item_title_submenu:hover,
.sub_menu_pages .inner_sub_menu_pages .title_sub_menu .item_title_submenu.active {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.sub_menu_pages .inner_sub_menu_pages .body_sub_menu {
    flex: 1;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.sub_menu_pages .inner_sub_menu_pages .body_sub_menu .tab_inner_menu {
    display: none;
    width: 100%;
}

.sub_menu_pages .inner_sub_menu_pages .body_sub_menu .tab_inner_menu.active {
    display: block;
}

.sub_menu_pages .inner_sub_menu_pages .body_sub_menu .tab_inner_menu ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
    margin: 0;
}

.sub_menu_pages .inner_sub_menu_pages .body_sub_menu .tab_inner_menu ul li {
    list-style: none;
}

.sub_menu_pages .inner_sub_menu_pages .body_sub_menu .tab_inner_menu ul li a {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.sub_menu_pages .inner_sub_menu_pages .body_sub_menu .tab_inner_menu ul li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
    padding-right: 18px;
}

.left_btn_header {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.left_btn_header:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.left_btn_header .icon {
    width: 22px;
    height: 22px;
    stroke: #fff;
    transition: all 0.3s ease;
}

.left_btn_header:hover .icon {
    stroke: var(--primary-color);
}

.filmkio_header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(10, 13, 16, 0.7);

    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 80px;
    z-index: 2000;
    transition: all 0.4s ease;
}

.filmkio_header.in_top {
    background-color: transparent;
    backdrop-filter: none;
}

.filmkio_header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 100%;
    padding: 0 4.8rem;
}

.right_side_header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left_side_header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    gap: 15px;
}

.search_box_header {
    background: rgba(10, 13, 16, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    height: 48px;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    width: 22rem;
    z-index: 100;
    overflow: visible;
}


.search_box_header.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.left_side_header.search-active .left_btn_header:not(.btn_search_header) {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(0.8);
    transition: all 0.3s ease;
}



.inner_search_box {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 5px;
}

.inner_search_box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    padding: 0 10px;
    height: 100%;
}

.inner_search_box .btn_submit_holder,
.inner_search_box .btn_settings_holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.inner_search_box .btn_submit_holder:hover,
.inner_search_box .btn_settings_holder:hover {
    background: rgba(255, 255, 255, 0.1);
}

.inner_search_box .btn_submit_holder button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner_search_box .icon {
    width: 20px;
    height: 20px;
    stroke: #fff;
}





.drop_user_nav {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    width: 220px;
    z-index: 100;
}

.drop_user_nav.show {
    opacity: 1;
    visibility: visible;
    top: 50px;
    transform: translateY(0);
}


/* Dashboard Form Fields */
.dashboard_fields {
    background: #1a1a1a;

    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard_fields .item_field {
    width: calc(50% - 15px);
}

.dashboard_fields .item_field.full {
    width: 100%;
}

.dashboard_fields .label_field {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 12px;
}

.dashboard_fields .put_field {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    height: 54px;
    padding: 0 20px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.dashboard_fields .put_field:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.02);
}

.gender_switch {
    display: flex;
    background: #0f0f0f;
    border-radius: 12px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.item_gender {
    flex: 1;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.item_gender.active {
    background: var(--primary-color);
    color: #fff;
}

.save_btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save_btn:hover {
    filter: brightness(1.2);
}

.message_response {
    width: 100%;
    color: #4caf50;
    font-size: 14px;
    margin-bottom: 20px;
}

.adv_options_search {
    background-color: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.8);
    left: 0;
    opacity: 0;
    position: absolute;
    top: calc(100% + 15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    z-index: 1000;
    width: 100%;
    min-width: min(600px, 100%);
    padding: 20px;
    transform: translateY(10px);
}

.adv_options_search.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.adv_options_search .content_row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adv_options_search .row {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
}

.adv_options_search .item_search {
    flex: 1;
    position: relative;
}

.dropdown_filmkio {
    width: 100%;
    position: relative;
}

.dropdown_filmkio .label_dropdown {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #0f0f0f;
    padding: 0 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    z-index: 5;
    border-radius: 4px;
}

.dropdown_filmkio .main_dropdown {
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.dropdown_filmkio .main_dropdown:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.dropdown_filmkio .dropdown_value {
    font-size: 14px;
    color: #fff;
}

.dropdown_filmkio .dropdown_icon svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.dropdown_filmkio.open .dropdown_icon svg {
    transform: rotate(180deg);
}

.dropdown_filmkio .dropdown_body {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 100%;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1100;
    max-height: 250px;
    overflow-y: auto;
    padding: 8px;
}

.dropdown_filmkio.open .dropdown_body {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown_filmkio .dropdown_body .item_dropdown_body,
.dropdown_filmkio .dropdown_body .item_dropdown_genre_body {
    padding: 10px 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown_filmkio .dropdown_body .item_dropdown_body:hover,
.dropdown_filmkio .dropdown_body .item_dropdown_body.active,
.dropdown_filmkio .dropdown_body .item_dropdown_genre_body:hover,
.dropdown_filmkio .dropdown_body .item_dropdown_genre_body.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
}

.adv_options_search .btnadvancedSearch {
    width: 100%;
    height: 50px;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.adv_options_search .btnadvancedSearch:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 173, 17, 0.3);
}

/* Use banner (landscape) images in updated series — center-crop instead of top-crop */
.update_series .item_series .bgcover img {
    object-position: center;
}
