/*
Theme Name: VegaMovies Pro
Theme URI: https://vegamovies.audio
Author: Custom Developer
Description: High performance dark-mode theme — exact clone of vegamovies.audio design.
Version: 3.0
License: GNU General Public License v2 or later
Text Domain: vegamovies-pro
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  background-color: #363434;
  color: #c4c4c4;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color .3s, background-color .3s;
}
a:hover { color: #ffc107; text-decoration: none; }

img { max-width: 100%; height: auto; border: 0; }

ul, ol { list-style: none; margin: 0; padding: 0; }
p { margin: 0; padding: 8px 0 7px; }
h1,h2,h3,h4,h5,h6 { margin: 0; padding: 0; line-height: 1.35; color: #fff; font-weight: 500; }

/* ===== LAYOUT CONTAINERS ===== */
.site__container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.site__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.site__row.auto-width {
  align-items: center;
}
.float-right {
  margin-left: auto;
}
.site__col {
  padding-left: 15px;
  padding-right: 15px;
  min-height: 1px;
}

/* ===== TOP CONTENT (BIG LOGO AREA) ===== */
.top-content {
  position: relative;
}
.top-content .nav-logo {
  max-width: 100%;
}
.top-content .nav-logo-img {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  /* Removed justify-content for left-aligned logo matching desktop view */
  min-height: 100px;
  padding: 15px 0;
}
.top-content .nav-logo-img img,
.logo-footer img {
  width: 250px;
  max-width: 100%;
  display: block;
}

/* ===== MAIN NAV BAR ===== */
.main-nav {
  /* Removed local background to inherit from body as seen in competitor desktop screenshot */
  background-color: transparent;
  position: relative;
  z-index: 8;
}
.nav-wrap { position: relative; }

/* Nav Logo inside navbar (mobile only) */
.main-nav .nav-logo .nav-logo-img {
  display: flex;
  align-items: center;
  min-height: 50px;
}
.main-nav .nav-logo .nav-logo-img img {
  max-height: 30px;
  max-width: 50vw;
  display: block;
}

/* Nav Menu */
.nav-menu {
  text-transform: uppercase;
  font-size: 0; /* inline-block fix */
}
.nav-menu > ul {
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
  flex-wrap: wrap;
}
.nav-menu > ul > li {
  position: relative;
}
.nav-menu > ul > li > a {
  color: #fff;
  font-size: 16px;
  display: block;
  min-height: 50px;
  line-height: 50px;
  padding-left: 10px;
  padding-right: 15px;
  transition: background-color .3s;
  white-space: nowrap;
}

/* Nav Icon Circles */
.nav-menu > ul > li > a i.fa {
  padding: 5px;
  background: #363434;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: #ffcd38;
  text-align: center;
  font-size: 13px;
  line-height: 21px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
}

/* Nav Hover */
.nav-menu > ul > li:hover > a,
.nav-menu > ul > li.current-menu-item > a {
  background-color: rgb(69, 69, 69);
}

/* Dropdown arrow via CSS */
.nav-menu > ul > li.menu-item-has-children > a::after {
  content: " \f107";
  font-family: FontAwesome;
  line-height: 1;
  position: relative;
  top: 1px;
  font-size: 14px;
}

/* ===== DROPDOWN MENUS ===== */
.nav-menu > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  height: 0;
  overflow: hidden;
  transition: opacity .3s, visibility .3s;
}
.nav-menu > ul > li:hover > ul {
  height: auto;
  overflow: visible;
  opacity: 1;
  visibility: visible;
}
.nav-menu > ul > li ul li {
  padding: 0;
  position: relative;
  min-width: 220px;
  background-color: rgba(0,0,0,0.9);
}
.nav-menu > ul > li ul li > a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 14px;
  transition: background-color .3s;
}
.nav-menu > ul > li ul li:hover > a {
  background-color: #2b3433;
}

/* ===== SEARCH BOX (Desktop) ===== */
.top-search-box {
  display: flex;
  align-items: center;
}
.top-search-box .top-search-box-wrapper {
  width: 160px;
  min-height: 50px;
  position: relative;
}
.top-search-box .search-terms-textfield {
  margin: 0;
  color: #999;
  display: block;
  position: absolute;
  top: 0; right: 0; bottom: 0;
  padding: 0 55px 0 15px;
  max-width: none;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background-color: rgb(54,52,52);
  border: 5px solid #3d3d3d;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: width .3s, color .3s;
  box-sizing: border-box;
}
.top-search-box .search-terms-textfield::placeholder { color: #999; }
.top-search-box .search-terms-textfield:focus,
.top-search-box .search-terms-textfield:hover {
  color: #fff;
  width: 200%;
}
.top-search-box .search-submit-btn {
  background: #ffc300;
  border: none;
  font-size: 0;
  min-width: 0;
  display: block;
  position: absolute;
  top: 5px; right: 5px; bottom: 5px;
  width: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.top-search-box .fa-search {
  position: absolute;
  color: #fff;
  top: 50%;
  right: 18px;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 99;
  font-size: 14px;
}

/* ===== MOBILE NAV ELEMENTS ===== */
.nav-mobile-menu,
.top-search-box-mobile {
  min-height: 50px;
  display: none;
  align-items: center;
}

/* Hamburger button */
.button-menu-mobile {
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  user-select: none;
}
.button-menu-mobile > span {
  display: block;
  position: absolute;
  width: 16px;
  height: 1px;
  left: 6px;
  top: 50%;
  background-color: #fff;
  transition: transform .3s, opacity .3s;
}
.button-menu-mobile > span:nth-child(1) { margin-top: -5px; }
.button-menu-mobile > span:nth-child(2) { margin-top: 0; }
.button-menu-mobile > span:nth-child(3) { margin-top: 5px; }
.button-menu-mobile > span:nth-child(4),
.button-menu-mobile > span:nth-child(5) { opacity: 0; }

body.active-mobile-menu .button-menu-mobile > span:nth-child(1),
body.active-mobile-menu .button-menu-mobile > span:nth-child(2),
body.active-mobile-menu .button-menu-mobile > span:nth-child(3) { opacity: 0; }
body.active-mobile-menu .button-menu-mobile > span:nth-child(4) {
  opacity: 1; transform: rotate(45deg);
}
body.active-mobile-menu .button-menu-mobile > span:nth-child(5) {
  opacity: 1; transform: rotate(-45deg);
}
body.active-mobile-menu .button-menu-mobile { border-radius: 50%; }

/* Mobile search dropdown */
.top-search-box-mobile .top-search-dropdown {
  color: #fff;
  min-height: 50px;
  min-width: 50px;
  line-height: 50px;
  display: block;
  text-align: center;
  font-size: 20px;
}
.top-search-box-mobile .top-search-elm { position: relative; z-index: 10; }
.top-search-box-mobile .top-search-elm > ul {
  position: absolute;
  top: 100%;
  right: -9px;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transform: scale(1, 0);
  transform-origin: top;
  transition: opacity .15s, visibility .15s, transform .2s;
  z-index: 100;
}
.top-search-box-mobile .top-search-elm > ul.active-search {
  opacity: 1;
  visibility: visible;
  transform: scale(1, 1);
}
.top-search-box-mobile .top-search-elm > ul .top-search-box-dropdown {
  width: 320px;
  position: relative;
}
.top-search-box-mobile .top-search-elm > ul .search-terms-textfield {
  margin: 0;
  border: 0;
  display: block;
  width: 100%;
  padding: 15px;
  background: #000;
  color: #fff;
  font-size: 14px;
  outline: none;
}
.top-search-box-mobile .top-search-elm > ul .search-submit-btn {
  min-width: 0;
  position: absolute;
  top: 50%; right: 5px;
  transform: translateY(-50%);
  background: #ffc300;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

/* ===== FULL-SCREEN MOBILE MENU OVERLAY ===== */
#vp-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100%;
  background-color: #000;
  z-index: 1000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.1);
  transition: opacity .3s, visibility .3s, transform .3s;
}
body.active-mobile-menu #vp-mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}
#vp-mobile-menu .mobile-close-btn {
  text-align: center;
  margin-bottom: 30px;
}
#vp-mobile-menu .vp-mobile-menu-items {
  padding: 15px 0;
}
#vp-mobile-menu .vp-mobile-menu-items ul { margin: 0; padding: 0; }
#vp-mobile-menu .vp-mobile-menu-items > ul > li {
  position: relative;
  padding: 7px 30px 7px 0;
}
#vp-mobile-menu .vp-mobile-menu-items > ul > li > a {
  font-size: 18px;
  color: #fff;
  display: block;
  text-decoration: none;
}
#vp-mobile-menu .vp-mobile-menu-items > ul > li > a > .fa {
  margin-right: 5px;
}
#vp-mobile-menu .vp-mobile-menu-items .sub-menu {
  display: none;
  padding-left: 30px;
}
#vp-mobile-menu .vp-mobile-menu-items .sub-menu li > a {
  padding: 6px 0 6px 10px;
  color: rgba(255,255,255,.7);
  display: block;
  font-size: 15px;
  position: relative;
}
#vp-mobile-menu .vp-mobile-menu-items .sub-menu li > a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px; height: 3px;
  background-color: rgba(255,255,255,.5);
  top: 17px;
  border-radius: 50%;
}
/* Mobile submenu toggle arrow */
.mobile-submenu-toggle {
  position: absolute;
  right: 0; top: 5px;
  width: 30px; height: 30px;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/* ===== ACTION BUTTONS (Bollywood/Dual/Hollywood/Telegram) ===== */
#header-social {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 10px;
}
.button-action {
  font-family: inherit;
  padding: 8px 6px;
  font-size: 14px;
  margin: 5px 1px;
  min-width: 210px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  transition: .4s;
  border-radius: 15%;
}
.btn-bollywood { background-color: #44b81a; }
.btn-dualaudio { background-color: red; }
.btn-hollywood { background-color: #df9a17; }
.btn-telegram {
  background: #009de1;
  border-radius: 15%;
  text-transform: uppercase;
}
.btn-telegram svg {
  vertical-align: middle;
  margin-top: -4px;
}

/* ===== CATEGORY TAGS BAR ===== */
#header-category {
  margin-top: 10px;
  margin-bottom: 20px;
}
.wrapper .tab-box {
  display: flex;
  list-style: none;
  gap: 8px;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.wrapper .tab-box .tab {
  padding: 3px 11px;
  align-items: center;
  justify-content: center;
  user-select: none;
  background: #3d3d3d;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 4px 2px;
  transition-duration: .4s;
  cursor: pointer;
  min-width: 70px;
  white-space: nowrap;
}
.wrapper .tab-box .tab:hover {
  background: #ffc107;
  color: #000;
}
.tab-box .tab a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.tab-box .tab:hover {
  background: #555;
  border-color: #777;
}

/* ===== MOVIE GRID ===== */
.primary-content-control .site__container.container-control {
  background: #333131;
  margin-top: 20px;
  border-radius: 16px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.sidebar-direction { width: 100%; }
.main-content { width: 100%; }

.movie-grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
}
.movie-grid .post-item {
  width: 16.66666666%;
  margin-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
}
.post-item-wrap {
  position: relative;
}

/* Blog Picture Wrapper */
.blog-pic { position: relative; }
.blog-pic-wrap {
  position: relative;
  border-radius: 19px;
  overflow: hidden;
}

/* Image Box with 2:3 Aspect Ratio */
.img-box {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 150%;
  border-radius: 7px;
}
.img-box > img {
  display: block;
  width: 100%;
  min-height: 100%;
  position: absolute;
  left: 0; top: 0;
  object-fit: cover;
}

/* Placeholder BG - only shows if image hasn't loaded */
.ul-placeholder-bg {
  background-color: #555;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
img.ul-normal-classic ~ .ul-placeholder-bg { display: none !important; }
img.ul-normal-classic {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Hover Play Button Overlay */
.blog-pic-wrap .img-box::before {
  content: "\f04b";
  font-family: FontAwesome;
  color: #fff;
  z-index: 10;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  -webkit-font-smoothing: antialiased;
  text-rendering: auto;
  pointer-events: none;
}
.blog-pic-wrap .img-box::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.35);
  top: 0; left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s, visibility .3s;
}
.post-item-wrap:hover .img-box::before,
.post-item-wrap:hover .img-box::after {
  opacity: 1;
  visibility: visible;
}

/* Listing Content Overlay (Date + Title at bottom of poster) */
.movie-grid .listing-content {
  z-index: 11;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  position: absolute;
  padding: 30px 8px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.96) 100%);
  pointer-events: none;
}
.listing-content .mytime {
  margin-bottom: 4px;
}
.mytime .date-time {
  font-size: 12px;
  color: #fff;
  text-align: center;
}
.mytime .date-time i {
  margin-right: 4px;
}

/* Post Title in Grid */
.entry-title.post-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  word-break: break-word;
}
.entry-title.post-title a {
  color: #fff;
  pointer-events: auto;
  text-decoration: none;
}
.entry-title.post-title a:hover {
  color: #ffc107;
}

/* ===== PAGINATION ===== */
.blog-pagination {
  padding-top: 40px;
  padding-bottom: 20px;
}
.wp-pagenavi-wrapper {
  text-align: center;
}
.wp-pagenavi { margin: -3px; }
.wp-pagenavi > * {
  padding: 10px 15px;
  min-width: 40px;
  min-height: 40px;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.15);
  margin: 3px;
  vertical-align: top;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background .3s, border-color .3s;
}
.wp-pagenavi a:hover,
.wp-pagenavi .current {
  border-color: transparent;
  color: #fff;
  background-color: #ffcd38;
}
.wp-pagenavi .current { font-weight: 700; }

/* ===== FOOTER ===== */
.logo-footer {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 5px;
}
.site-footer { padding: 15px 0; }
.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: #c4c4c4;
  padding: 15px 0;
}
.footer-links {
  text-align: center;
  font-size: 16px;
  margin-top: 5px;
}
.footer-links a {
  color: #c4c4c4;
  margin: 0 5px;
}
.footer-links a:hover { color: #ffc107; }

/* ===== SINGLE POST ===== */
.global-single-content {
  margin-bottom: 60px;
  padding: 20px;
}
.global-single-content .entry-content {
  line-height: 1.8;
  color: #c4c4c4;
}
.global-single-content .entry-content a { color: #ffc107; }
.global-single-content .entry-content img { max-width: 100%; height: auto; }

/* ========================= */
/* ==== Single Post Content ==== */
/* ========================= */
.post-content {
  margin: 20px auto;
  max-width: 1000px;
  padding: 0 15px;
}
.post-content img {
  display: block;
  margin: 15px auto;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0px 3px 12px rgba(0,0,0,0.4);
}
/* Helpers */
.svg-inline--fa { width: 1.1rem; color: #f87171; }
#report {
  display: flex;
  align-items: center;
  padding: 0.6rem;
  gap: 0.6rem;
  justify-content: center;
  border: dashed 2px;
  margin: 2rem auto;
  font-size: 14px;
  background: #403e3e;
  max-width: 100%;
  box-sizing: border-box;
  color: #c4c4c4;
}
/* ==== Buttons ==== */
.download-btn, .dwd-button, .form-submit .submit {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  max-width: 100%;
}
.download-btn { background: linear-gradient(270deg, #226ec3 15%, #7bfd2d 92%); box-shadow: 0 4px 8px rgba(0,0,0,0.2); }
.download-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0,0,0,0.3); }
.dwd-button { background: linear-gradient(135deg, #67df03b8, #1356d5b8); margin: 4px; padding: 12px 20px; }

/* ========================= */
/* ==== Comments Styling ==== */
/* ========================= */
.comments-area { 
  font-family: Arial, sans-serif; 
  width: 100%; 
  max-width: 800px;
  margin: 10px auto; 
  color: #fff; 
  background-color: #292929; 
  padding: 15px; 
  border-radius: 8px; 
}

.comment-count-section h2 { font-size: 1.5rem; font-weight: normal; margin-bottom: 5px; }
.comment-count-section hr { border: none; border-top: 1px solid #444; margin-bottom: 30px; }
.comment-respond { margin-top: 20px; }
.comment-reply-title { font-size: 1.25rem; font-weight: normal; margin-bottom: 20px; }

/* FIXED: Added Email and URL types here */
.comment-form textarea, 
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
  width: 100%;
  background-color: #444; /* Dark Background */
  border: 1px solid #555; /* Subtle Border */
  padding: 12px;
  color: #fff;            /* White Text */
  border-radius: 4px;
  margin-bottom: 15px;
  box-sizing: border-box;
  font-size: 14px;
}

/* Focus hone par border color change */
.comment-form textarea:focus, 
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus {
  outline: none;
  border-color: #FFC107;
  background-color: #555;
}

.comment-form input::placeholder, 
.comment-form textarea::placeholder { color: #aaa; }

/* Captcha Styling */
.comment-form-captcha { display: flex; align-items: center; margin-bottom: 15px; gap: 15px; }
.comment-form-captcha input { flex-grow: 1; }
.captcha-image { height: 50px; width: auto; border: 1px solid #555; border-radius: 4px; }

/* Submit Button */
.form-submit .submit { 
  background-color: #d9534f; 
  border: none; 
  color: #fff; 
  padding: 12px 25px; 
  font-weight: bold; 
  cursor: pointer; 
  border-radius: 4px; 
  transition: background-color 0.3s ease; 
  width: auto; /* Button full width na ho */
}
.form-submit .submit:hover { background-color: #c94642; }

@media (max-width: 480px) {
  .comment-form-captcha { flex-direction: column; align-items: stretch; gap: 10px; }
  .captcha-image { margin: 0 auto; }
}

/* ===== RESPONSIVE ===== */

/* <= 1199px */
@media (max-width: 1199px) {
  .movie-grid .post-item { width: 20%; }
  .nav-menu > ul {
    margin-left: -10px;
    margin-right: -10px;
  }
  .nav-menu > ul > li > a {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* <= 991px */
@media (max-width: 991px) {
  .top-content,
  .nav-menu,
  .top-search-box {
    display: none !important;
  }
  .nav-mobile-menu,
  .top-search-box-mobile {
    display: flex !important;
  }
  .main-nav .nav-logo {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
  }
  .main-nav .nav-logo .nav-logo-img img {
    max-height: 30px;
    max-width: 50vw;
  }
  .movie-grid .post-item { width: 25%; }
  .button-action { min-width: 160px; font-size: 12px; }
}

/* <= 767px */
@media (max-width: 767px) {
  .movie-grid .post-item { width: 33.3333%; }
  .top-search-box-mobile .top-search-elm > ul .top-search-box-dropdown {
    width: 280px;
  }
}

/* <= 491px */
@media (max-width: 491px) {
  .movie-grid .post-item { width: 50%; }
  .button-action { min-width: 130px; font-size: 11px; padding: 6px 4px; }
  .tab-box .tab { font-size: 12px; min-width: 60px; padding: 2px 8px; }
}

/* <= 575px */
@media (max-width: 575px) {
  .top-search-box-mobile .top-search-elm {
    position: static;
  }
  .top-search-box-mobile .top-search-elm > ul,
  .top-search-box-mobile .top-search-elm > ul .top-search-box-dropdown {
    width: 100%;
  }
  .entry-title.post-title { font-size: 13px; }
  
  /* Tighter grid spacing on mobile */
  .movie-grid {
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: -20px;
  }
  .movie-grid .post-item {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 20px;
  }
  #header-social a {
    margin-bottom: 6px;
  }
}

/* >= 992px: Hide mobile elements */
@media (min-width: 992px) {
  .nav-mobile-menu,
  .top-search-box-mobile,
  .main-nav .nav-logo {
    display: none !important;
  }
  body.active-mobile-menu #vp-mobile-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* ===== FORCE FIX: SINGLE POST CSS PRIORITY ===== */
body.single .entry-content.post-content {
  margin: 20px auto !important;
  max-width: 1000px !important;
  padding: 0 15px !important;
}
body.single .entry-content.post-content img {
  display: block !important;
  margin: 15px auto !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 6px !important;
  box-shadow: 0px 3px 12px rgba(0,0,0,0.4) !important;
}
body.single #report {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0.6rem !important;
  gap: 0.6rem !important;
  border: dashed 2px !important;
  margin: 2rem auto !important;
  font-size: 14px !important;
  background: #403e3e !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  color: #c4c4c4 !important;
}
body.single #report .svg-inline--fa {
  width: 1.1rem !important;
  color: #f87171 !important;
}
body.single .download-btn,
body.single .dwd-button,
body.single .form-submit .submit {
  display: inline-block !important;
  padding: 12px 25px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  color: #fff !important;
  border-radius: 5px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  text-align: center !important;
  max-width: 100% !important;
}
body.single .download-btn {
  background: linear-gradient(270deg, #226ec3 15%, #7bfd2d 92%) !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
}
body.single .download-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3) !important;
}
body.single .dwd-button {
  background: linear-gradient(135deg, #67df03b8, #1356d5b8) !important;
  margin: 4px !important;
  padding: 12px 20px !important;
}
body.single .comments-area {
  font-family: Arial, sans-serif !important;
  width: 100% !important;
  max-width: 800px !important;
  margin: 10px auto !important;
  color: #fff !important;
  background-color: #292929 !important;
  padding: 15px !important;
  border-radius: 8px !important;
}
body.single .comment-form textarea,
body.single .comment-form input[type="text"],
body.single .comment-form input[type="email"],
body.single .comment-form input[type="url"] {
  width: 100% !important;
  background-color: #444 !important;
  border: 1px solid #555 !important;
  padding: 12px !important;
  color: #fff !important;
  border-radius: 4px !important;
  margin-bottom: 15px !important;
  box-sizing: border-box !important;
  font-size: 14px !important;
}
body.single .comment-form textarea:focus,
body.single .comment-form input[type="text"]:focus,
body.single .comment-form input[type="email"]:focus,
body.single .comment-form input[type="url"]:focus {
  outline: none !important;
  border-color: #FFC107 !important;
  background-color: #555 !important;
}
body.single .comment-form-captcha {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 15px !important;
  gap: 15px !important;
}
body.single .comment-form-captcha input { flex-grow: 1 !important; }
body.single .captcha-image {
  height: 50px !important;
  width: auto !important;
  border: 1px solid #555 !important;
  border-radius: 4px !important;
}
@media (max-width: 480px) {
  body.single .comment-form-captcha { flex-direction: column !important; align-items: stretch !important; gap: 10px !important; }
  body.single .captcha-image { margin: 0 auto !important; }
}

/* Sidebar only on single */
body.single .sidebar-direction {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
body.single .main-content {
  width: calc(100% - 330px);
}
body.single .main-sidebar.main-sidebar-control {
  width: 330px;
  padding: 0;
  padding-top: 16px;
  padding-bottom: 0;
  background-color: rgba(255,255,255,.05);
}
body.single .sidebar-content-inner-control {
  padding: 10px 14px;
}
body.single .main-sidebar .widget { margin-bottom: 20px; }
body.single .main-sidebar .widget-title {
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}
body.single .main-sidebar .widget_recent_entries ul li { margin-bottom: 10px; }
body.single .main-sidebar .widget_recent_entries ul li a { color: #c4c4c4; line-height: 1.6; }
body.single .main-sidebar .widget_recent_entries ul li a:hover { color: #ffc107; }
@media (max-width: 991px) {
  body.single .sidebar-direction { display: block; }
  body.single .main-content,
  body.single .main-sidebar.main-sidebar-control { width: 100%; }
  body.single .main-sidebar.main-sidebar-control {
    margin-top: 40px;
    padding-top: 40px;
    background-color: rgba(255,255,255,.05);
  }
}
