/* VegaMovies — HDHUB4U-inspired layout (demo: filmy4.wpcodequill.com) */

body {
  background-color: #0b0b0b;
  color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
}

ul,
li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #111;
  position: relative;
  min-height: 100vh;
}

/* ---------- Desktop header ---------- */
.top-header {
  background: #1a1a1a;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  gap: 16px;
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo-area img {
  max-height: 50px;
  width: auto;
}

.logo-text {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.logo-text span {
  color: #ff0000;
}

.desktop-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.desktop-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

.desktop-nav a:hover {
  color: #ff9933;
}

.header-search {
  display: flex;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  height: 36px;
  border: 1px solid #ff9933;
  flex-shrink: 0;
}

.header-search input {
  border: none;
  padding: 0 10px;
  width: 220px;
  outline: none;
  font-size: 14px;
  color: #333;
  font-family: inherit;
}

.header-search button {
  background: #222;
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  font-weight: bold;
  font-family: inherit;
}

.header-search button:hover {
  background: #ff9933;
  color: #000;
}

/* ---------- Mobile header ---------- */
.mobile-header-bar {
  display: none;
  background: #222;
  padding: 10px 15px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #333;
}

.m-btn {
  background: #444;
  color: #fff;
  border: 1px solid #555;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1.2;
}

.mobile-header-bar .logo-area {
  max-height: 40px;
  overflow: hidden;
}

.mobile-header-bar .logo-text {
  font-size: 22px;
}

#mobile-menu-dropdown {
  display: none;
  background: #fff;
  width: 100%;
  border-bottom: 3px solid #ff9933;
}

#mobile-menu-dropdown.is-open {
  display: block;
}

#mobile-menu-dropdown a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  text-align: left;
}

#mobile-menu-dropdown a:hover {
  background: #f5f5f5;
  color: #ff0000;
}

#mobile-search-dropdown {
  display: none;
  padding: 15px;
  background: #1a1a1a;
}

#mobile-search-dropdown.is-open {
  display: block;
}

.mobile-search-box {
  display: flex;
}

.mobile-search-box input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ff9933;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 14px;
  font-family: inherit;
}

.mobile-search-box button {
  background: #ff9933;
  border: none;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-family: inherit;
  color: #000;
}

/* ---------- Featured CTA buttons ---------- */
.featured-row {
  text-align: center;
  padding: 20px 10px 10px;
}

.featured-btn {
  display: inline-block;
  padding: 10px 25px;
  margin: 5px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 18px;
  color: #fff !important;
}

.btn-desi {
  background: #ff0000;
}

.btn-bolly {
  background: #ff9933;
}

.btn-telegram,
.btn-telegram-alt {
  background: #2AABEE !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-telegram-alt {
  background: #229ED9 !important;
}

.btn-telegram:hover,
.btn-telegram-alt:hover {
  filter: brightness(1.08);
}

.tg-ico {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.featured-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ---------- Category tags ---------- */
.main-menu-tags-wrap {
  text-align: center;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.main-menu-tags-wrap a {
  display: inline-block;
  padding: 7px 18px;
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ddd !important;
  transition: 0.3s;
}

.main-menu-tags-wrap a:hover {
  background: #333;
  border-color: #ff9933;
  color: #fff !important;
}

/* ---------- Section title ---------- */
.section-title {
  background: #333;
  color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 2px solid #ff9933;
  margin: 15px 10px;
  text-transform: capitalize;
  border-radius: 4px;
}

/* ---------- Movie grid ---------- */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
}

@media (min-width: 768px) {
  .movie-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    padding: 15px;
  }
}

.movie-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 5px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.movie-card:hover {
  border-color: #ff9933;
  transform: translateY(-3px);
}

.movie-card > a {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}

.poster-container {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  background: #222;
  overflow: hidden;
}

.poster-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  border: 1px solid #444;
  border-radius: 3px;
  z-index: 10;
  text-transform: uppercase;
}

.movie-details {
  padding: 10px 8px;
  text-align: center;
  background: #222;
  min-height: 80px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.movie-date {
  font-size: 10px;
  color: #2196f3;
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.movie-title {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  text-transform: capitalize;
}

.movie-meta-info {
  font-size: 10px;
  color: #ffeb3b;
  margin-top: 5px;
  display: block;
  font-weight: bold;
}

/* ---------- Pagination ---------- */
.pagination {
  text-align: center;
  padding: 30px 10px 40px;
}

.pagination .page-numbers,
.pagination a,
.pagination span {
  padding: 8px 15px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #bbb;
  margin: 0 3px;
  font-weight: bold;
  border-radius: 4px;
  font-size: 13px;
  display: inline-block;
}

.pagination .current,
.pagination span.current {
  background: #ff9933 !important;
  color: #000 !important;
  border-color: #ff9933 !important;
}

.pagination a:hover {
  background: #333;
  color: #fff;
}

/* ---------- Single movie page (HDHUB demo) ---------- */
.movie-post-box {
  max-width: 1000px;
  margin: 20px auto;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
}

.movie-post-breadcrumbs {
  padding: 15px;
  border-bottom: 1px solid #333;
  font-size: 13px;
  color: #bbb;
  line-height: 1.5;
}

.movie-post-breadcrumbs a {
  color: #ddd;
}

.movie-post-breadcrumbs a:hover {
  color: #ff9933;
}

.movie-post-breadcrumbs .sep {
  margin: 0 6px;
  color: #777;
}

.movie-post-breadcrumbs .current-post {
  color: #aaa;
}

.movie-post-body {
  padding: 25px;
}

.movie-post-title {
  color: #ffcc00;
  font-size: 24px;
  text-align: center;
  margin: 0 0 25px;
  line-height: 1.4;
  text-shadow: 1px 1px 2px #000;
  font-weight: 700;
}

.movie-info-panel {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  background: #222;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #333;
}

.movie-info-poster {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.movie-info-poster-frame {
  border: 1px solid #444;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.movie-info-poster-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.movie-info-meta {
  flex: 1.5;
  min-width: 300px;
}

.movie-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.movie-info-table tr {
  border-bottom: 1px solid #333;
}

.movie-info-table tr:last-child {
  border-bottom: none;
}

.movie-info-table td {
  padding: 10px 0;
  vertical-align: top;
}

.movie-info-table .label {
  color: #ffcc00;
  font-weight: bold;
  width: 140px;
  white-space: nowrap;
}

.movie-info-table .value {
  color: #eee;
}

.movie-info-table .value a {
  color: #2196f3;
  font-weight: bold;
}

.movie-info-table .value a:hover {
  color: #64b5f6;
}

.screenshots-block {
  margin-top: 30px;
  text-align: center;
}

.summary-bar,
.screenshots-bar {
  background: #333;
  padding: 8px;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.summary-bar {
  background: #1f1f1f;
  border: 1px solid #333;
  color: #ffcc00;
}

.movie-summary {
  text-align: left;
  margin-bottom: 22px;
  padding: 14px 16px;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
}

.movie-summary p {
  margin: 0 0 10px;
  color: #ddd;
  line-height: 1.65;
}

.movie-summary p:last-child {
  margin-bottom: 0;
}

.movie-summary strong {
  color: #ffcc00;
}

.screenshots-bar {
  margin-top: 8px;
}

.movie-content {
  text-align: left;
  color: #ddd;
  line-height: 1.7;
}

.movie-content p {
  margin: 0 0 14px;
}

.movie-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 10px auto;
  border: 1px solid #444;
  display: block;
}

.vm-shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.vm-shots-grid img {
  width: 100%;
  height: auto;
  margin: 0;
  border: 1px solid #444;
  border-radius: 5px;
  background: #111;
}

.shots-empty {
  color: #888;
  font-size: 14px;
  text-align: center;
  margin: 12px 0 0;
}

.download-area-header {
  background: #b22222;
  color: #fff;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 4px 4px 0 0;
  margin-top: 40px;
  letter-spacing: 0.5px;
}

.download-section {
  background: #111;
  padding: 20px;
  border-radius: 0 0 8px 8px;
  text-align: center;
  color: #fff;
  border: 1px solid #333;
  border-top: none;
}

.download-item {
  margin-bottom: 30px;
  border-bottom: 1px dashed #333;
  padding-bottom: 20px;
}

.download-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.download-item p {
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 15px;
  color: #fff;
}

/* Series season / episode downloads */
.series-download-section {
  text-align: left;
  padding: 0;
  overflow: hidden;
}

.series-season-block {
  border-bottom: 1px solid #2a2a2a;
}

.series-season-block:last-child {
  border-bottom: none;
}

.series-season-title {
  background: #1f1f1f;
  color: #ffcc00;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 1px solid #333;
}

.series-episode-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px dashed #2a2a2a;
  flex-wrap: wrap;
}

.series-episode-row:last-child {
  border-bottom: none;
}

.series-episode-row.is-pack {
  background: rgba(255, 153, 51, 0.08);
  border-bottom-style: solid;
}

.series-episode-label {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.series-pack-badge {
  display: inline-block;
  background: #ff9933;
  color: #111;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
}

.series-episode-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.series-dl-btn {
  padding: 8px 18px !important;
  font-size: 13px !important;
  min-width: 72px;
  text-align: center;
}

.series-link-pending {
  color: #888;
  font-size: 13px;
}

@media (max-width: 640px) {
  .series-episode-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .series-episode-links {
    width: 100%;
    justify-content: flex-start;
  }
}

.dl-btn {
  background: #28a745;
  color: #fff !important;
  padding: 12px 60px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.dl-btn:hover {
  background: #218838;
  color: #fff !important;
}

/* ---------- Comments ---------- */
.movie-comments,
.vm-comments {
  margin-top: 36px;
}

.vm-comments-list-wrap {
  margin-bottom: 28px;
}

.vm-comments-list-header,
.vm-comment-form-header {
  background: #b22222;
  color: #fff;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 6px 6px 0 0;
}

.vm-comment-form-header .comment-reply-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline;
}

.vm-comment-form-header .comment-reply-title small,
.vm-comment-form-header #cancel-comment-reply-link {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #ffcc00;
  text-transform: none;
  letter-spacing: 0;
}

.vm-comment-form-header #cancel-comment-reply-link:hover {
  color: #fff;
}

.vm-comment-list {
  list-style: none !important;
  margin: 0;
  padding: 16px;
  background: #111;
  border: 1px solid #333;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.vm-comment-list .children {
  list-style: none !important;
  margin: 12px 0 0 18px;
  padding: 0 0 0 14px;
  border-left: 2px solid #2a2a2a;
}

.vm-comment {
  margin: 0 0 14px;
  padding: 0;
}

.vm-comment:last-child {
  margin-bottom: 0;
}

.vm-comment-body {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
}

.vm-comment-avatar img,
.vm-comment-avatar .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #333;
  background: #0b0b0b;
}

.vm-comment-content {
  flex: 1;
  min-width: 0;
}

.vm-comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 8px;
}

.vm-comment-author,
.vm-comment-author a {
  font-weight: 700;
  color: #ffcc00 !important;
  font-size: 14px;
}

.vm-comment-date {
  font-size: 12px;
  color: #888;
}

.vm-comment-awaiting {
  font-size: 12px;
  color: #ff9933;
  margin: 0 0 8px;
}

.vm-comment-text {
  color: #ddd;
  font-size: 14px;
  line-height: 1.55;
}

.vm-comment-text p {
  margin: 0 0 8px;
}

.vm-comment-text p:last-child {
  margin-bottom: 0;
}

.vm-comment-reply {
  margin-top: 8px;
}

.vm-comment-reply a {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #ff9933 !important;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.vm-comment-reply a:hover {
  color: #ffcc00 !important;
}

.vm-comments-closed {
  text-align: center;
  color: #888;
  padding: 16px;
  border: 1px dashed #333;
  border-radius: 8px;
}

.vm-comment-respond {
  margin-top: 0;
  color: #fff;
}

.vm-comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 18px;
  background: #111;
  border: 1px solid #333;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.vm-comment-form .comment-notes {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  color: #9a9a9a;
}

.vm-comment-form .vm-field {
  margin: 0;
}

.vm-comment-form .vm-field-full,
.vm-comment-form .comment-form-comment,
.vm-comment-form .comment-form-cookies-consent,
.vm-comment-form .form-submit,
.vm-comment-form .logged-in-as {
  grid-column: 1 / -1;
}

.vm-comment-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ccc;
}

.vm-comment-form .required {
  color: #ff5555;
}

.vm-comment-form .optional {
  color: #777;
  font-weight: 400;
  font-size: 12px;
}

.vm-comment-form textarea,
.vm-comment-form input[type="text"],
.vm-comment-form input[type="email"],
.vm-comment-form input[type="url"] {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 14px;
  background: #0b0b0b;
  color: #fff;
  border: 1px solid #333;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vm-comment-form textarea {
  min-height: 120px;
  resize: vertical;
}

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

.vm-comment-form textarea:focus,
.vm-comment-form input[type="text"]:focus,
.vm-comment-form input[type="email"]:focus,
.vm-comment-form input[type="url"]:focus {
  outline: none;
  border-color: #ff9933;
  box-shadow: 0 0 0 2px rgba(255, 153, 51, 0.2);
}

.vm-cookie-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #aaa !important;
  cursor: pointer;
  line-height: 1.4;
}

.vm-cookie-label input {
  width: auto !important;
  margin: 2px 0 0 !important;
  accent-color: #ff9933;
  flex-shrink: 0;
}

.vm-comment-form .form-submit {
  margin: 4px 0 0;
}

.vm-comment-submit,
.vm-comment-form .submit,
.vm-comment-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 28px !important;
  background: #ff9933 !important;
  color: #111 !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.vm-comment-submit:hover,
.vm-comment-form .submit:hover,
.vm-comment-form input[type="submit"]:hover {
  background: #ffb366 !important;
}

.vm-comment-submit:active {
  transform: translateY(1px);
}

.comments-navigation,
.comment-navigation {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 0;
  font-size: 13px;
}

.comments-navigation a,
.comment-navigation a {
  color: #ff9933 !important;
}

@media (max-width: 640px) {
  .vm-comment-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .vm-comment-body {
    gap: 10px;
    padding: 12px;
  }

  .vm-comment-list .children {
    margin-left: 8px;
    padding-left: 10px;
  }

  .vm-comment-submit {
    width: 100%;
  }
}

/* Static page content fallback */
.single-wrap {
  padding: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.single-content {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 20px;
}

.single-content p {
  color: #ddd;
  margin: 0 0 12px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #000a14;
  border-top: 1px solid #222;
  padding: 30px 15px 20px;
  text-align: center;
  margin-top: 20px;
}

.site-footer p {
  margin: 0 0 16px;
  font-size: 15px;
  color: #eee;
  line-height: 1.6;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: #00ff00;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 14px 0 18px;
}

.footer-links a {
  color: #ccc !important;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #2AABEE !important;
}

.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, #00ff00 0%, #00ccff 100%);
  width: 100%;
  box-shadow: 0 0 10px #00ff00;
  margin: 0 0 10px;
}

/* Static / guide pages */
.static-page-body {
  max-width: 820px;
  margin: 0 auto;
}

.static-content {
  color: #ddd;
  line-height: 1.7;
  font-size: 15px;
}

.static-content h2 {
  color: #ffcc00;
  font-size: 18px;
  margin: 28px 0 12px;
}

.static-content p {
  margin: 0 0 14px;
}

.static-content ul,
.static-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
  list-style: disc !important;
}

.static-content ol {
  list-style: decimal !important;
}

.static-content li {
  list-style: inherit !important;
  margin: 0 0 6px;
  color: #ccc;
}

.static-content a {
  color: #2AABEE;
  font-weight: 600;
}

.static-content a:hover {
  text-decoration: underline;
}

.guide-shot {
  margin: 14px 0 18px;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.guide-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.guide-tip,
.guide-warn {
  background: #222;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 12px 14px;
}

.guide-warn {
  border-color: #b22222;
  background: rgba(178, 34, 34, 0.15);
}

.guide-end {
  margin-top: 24px;
  color: #fff;
  font-size: 16px;
}

/* Homepage SEO + how-to CTA (VegaMovies style) */
.home-howto-cta {
  margin: 10px 15px 20px;
  padding: 22px 20px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.18), #1a1a1a 55%);
  border: 1px solid rgba(255, 153, 51, 0.35);
  border-radius: 10px;
}

.home-howto-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
}

.home-howto-cta p {
  margin: 0 0 16px;
  color: #ccc;
  font-size: 14px;
  max-width: 640px;
  line-height: 1.6;
}

.howto-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #f59e0b, #ff9933);
  color: #111 !important;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 999px;
}

.howto-btn:hover {
  filter: brightness(1.08);
}

.home-seo-block {
  margin: 10px 15px 30px;
  padding: 22px 20px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
}

.home-seo-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  text-align: left;
  text-shadow: none;
}

.home-seo-title span {
  color: #ff9933;
}

.home-seo-lead {
  color: #bbb;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.home-seo-block h2 {
  color: #fff;
  font-size: 18px;
  margin: 22px 0 12px;
}

.home-seo-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-seo-cats a {
  display: inline-block;
  padding: 7px 12px;
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 13px;
  color: #ddd !important;
}

.home-seo-cats a:hover {
  border-color: #ff9933;
  color: #fff !important;
}

.home-seo-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

@media (min-width: 768px) {
  .home-seo-features {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-seo-features > div {
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 14px;
}

.home-seo-features .feat-t {
  margin: 0;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
}

.home-seo-features .feat-d {
  margin: 6px 0 0;
  color: #999;
  font-size: 12px;
  line-height: 1.45;
}

.home-faq details {
  background: #222;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
}

.home-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  list-style: none;
}

.home-faq summary::-webkit-details-marker {
  display: none;
}

.home-faq details p {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: 13px;
  line-height: 1.6;
}

.footer-disclaimer {
  max-width: 720px;
  margin: 0 auto 12px !important;
  color: #999 !important;
  font-size: 12px !important;
  line-height: 1.6;
}

.footer-disclaimer a {
  color: #ff9933 !important;
}

@media (max-width: 600px) {
  .movie-post-box {
    margin: 10px;
  }

  .movie-post-body {
    padding: 15px;
  }

  .movie-post-title {
    font-size: 18px;
  }

  .dl-btn {
    width: 100%;
    padding: 12px 0;
    box-sizing: border-box;
  }

  .movie-info-table .label {
    width: 120px;
    white-space: normal;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 850px) {
  .top-header {
    display: none !important;
  }

  .mobile-header-bar {
    display: flex;
  }

  .featured-btn {
    width: 42%;
    padding: 10px 5px;
    font-size: 14px;
  }

  .main-menu-tags-wrap {
    padding: 10px 5px;
  }

  .main-menu-tags-wrap a {
    font-size: 12px;
    padding: 6px 12px;
  }
}
