/*
Theme Name: Movie Grid Pro
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A responsive movie grid theme with 2 columns on mobile and 4 columns on desktop
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: movie-grid-pro
Tags: blog, entertainment, grid-layout, custom-header, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ════════════════════════════════════════════════════════════════
   GLOBAL RESET & BASE
   ════════════════════════════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

/* ════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════ */

.site-header {
  background: #111;
  padding: 15px 0;
  border-bottom: 2px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.site-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px 0;
  text-align: center;
}

.site-title a {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .site-header {
    padding: 20px 0;
  }
  
  .site-title {
    font-size: 28px;
    margin: 0 0 15px 0;
  }
}

/* ════════════════════════════════════════════════════════════════
   SEARCH BAR
   ════════════════════════════════════════════════════════════════ */

.search-bar {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.search-bar input {
  width: 100%;
  padding: 10px 45px 10px 15px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 25px;
  color: #fff;
  font-size: 14px;
}

.search-bar input:focus {
  outline: none;
  border-color: #e50914;
}

.search-bar button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #e50914;
  border: none;
  padding: 6px 15px;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}

@media (min-width: 768px) {
  .search-bar input {
    padding: 12px 50px 12px 20px;
    font-size: 15px;
  }
  
  .search-bar button {
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* ════════════════════════════════════════════════════════════════
   SECTION HEADINGS
   ════════════════════════════════════════════════════════════════ */

.section-heading {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-left: 4px solid #e50914;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.section-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229, 9, 20, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.section-heading:hover::before {
  transform: translateX(100%);
}

.section-heading svg {
  color: #e50914;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(229, 9, 20, 0.4));
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 26px;
    padding: 18px 25px;
    gap: 15px;
  }
}

/* ════════════════════════════════════════════════════════════════
   FEATURED POSTS SCROLL - THUMBNAILS ONLY
   ════════════════════════════════════════════════════════════════ */

.featured-scroll {
  background: #1a1a1a;
  padding: 25px 0 20px 0;
  overflow: hidden;
  border-bottom: 2px solid #222;
}

.featured-scroll .section-heading {
  margin: 0 auto 20px auto;
  width: fit-content;
}

.featured-scroll-inner {
  display: flex;
  gap: 20px;
  animation: scroll 45s linear infinite;
  padding: 0 20px;
}

.featured-scroll-inner:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.featured-poster-only {
  display: block;
  flex-shrink: 0;
  width: 160px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.featured-poster-only:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

.featured-poster-only .featured-poster-img {
  position: relative;
  width: 100%;
  padding-top: 150%;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  overflow: hidden;
}

.featured-poster-only .featured-poster-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

@media (max-width: 768px) {
  .featured-poster-only {
    width: 140px;
  }
  
  .featured-scroll-inner {
    gap: 15px;
  }
  
  .featured-placeholder {
    font-size: 40px;
  }
}

@media (min-width: 768px) {
  .featured-poster-only {
    width: 180px;
  }
}

/* ════════════════════════════════════════════════════════════════
   MAIN CONTENT
   ════════════════════════════════════════════════════════════════ */

.main-content {
  padding: 25px 0;
  width: 100%;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .main-content {
    padding: 40px 0;
  }
}

/* ════════════════════════════════════════════════════════════════
   MOVIE GRID - ROUNDED CARDS
   ════════════════════════════════════════════════════════════════ */

.movie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .movie-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

.movie-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
}

.movie-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 150%;
  overflow: hidden;
  background: #000;
  border-radius: 12px 12px 0 0;
}

.movie-thumbnail a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.watermark {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  font-size: 10px;
  border-radius: 5px;
  font-weight: 600;
  z-index: 2;
}

.view-count {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(229, 9, 20, 0.95);
  color: #fff;
  padding: 4px 8px;
  font-size: 10px;
  border-radius: 5px;
  font-weight: 600;
  z-index: 2;
}

.movie-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  height: 110px;
  min-height: 110px;
  max-height: 110px;
}

.movie-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
  text-decoration: none;
  display: block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  flex: 1;
}

.movie-title:hover {
  color: #e50914;
}

@media (min-width: 768px) {
  .watermark {
    bottom: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 6px;
  }
  
  .view-count {
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 6px;
  }
  
  .movie-info {
    padding: 15px;
    height: 130px;
    min-height: 130px;
    max-height: 130px;
  }
  
  .movie-title {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* ════════════════════════════════════════════════════════════════
   PAGINATION
   ════════════════════════════════════════════════════════════════ */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0;
  flex-wrap: wrap;
  padding: 0 10px;
}

.pagination a,
.pagination span {
  padding: 8px 12px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
  min-width: 40px;
  text-align: center;
  font-size: 14px;
}

.pagination a:hover {
  background: #e50914;
}

.pagination .current {
  background: #e50914;
  font-weight: 600;
}

@media (min-width: 768px) {
  .pagination {
    gap: 10px;
    margin: 40px 0;
  }
  
  .pagination a,
  .pagination span {
    padding: 10px 15px;
    min-width: 45px;
    font-size: 15px;
  }
}

/* ════════════════════════════════════════════════════════════════
   CATEGORIES SECTION
   ════════════════════════════════════════════════════════════════ */

.categories-section {
  background: #1a1a1a;
  padding: 25px 0;
  border-top: 2px solid #222;
  width: 100%;
  overflow-x: hidden;
}

.categories-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  padding: 0 10px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px;
}

.category-item {
  background: #111;
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s;
  font-weight: 600;
  font-size: 13px;
  word-break: break-word;
}

.category-item:hover {
  background: #e50914;
}

@media (min-width: 768px) {
  .categories-section {
    padding: 30px 0;
  }
  
  .categories-section h2 {
    font-size: 24px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  
  .category-item {
    padding: 15px;
    font-size: 15px;
  }
}

/* ════════════════════════════════════════════════════════════════
   RELATED MOVIES
   ════════════════════════════════════════════════════════════════ */

.related-movies {
  margin-top: 40px;
  padding: 25px 0;
  background: #111;
  width: 100%;
  overflow-x: hidden;
}

.related-movies h2 {
  margin-bottom: 20px;
  font-size: 20px;
  text-align: center;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .related-movies {
    margin-top: 50px;
    padding: 30px 0;
  }
  
  .related-movies h2 {
    margin-bottom: 30px;
    font-size: 26px;
  }
}

/* ════════════════════════════════════════════════════════════════
   SINGLE MOVIE PAGE - CLEAN & PROFESSIONAL
   ════════════════════════════════════════════════════════════════ */

.single-movie {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 15px;
  width: 100%;
  overflow-x: hidden;
}

/* Poster Section */
.single-poster-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.movie-poster-single {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s;
}

.movie-poster-single:hover {
  transform: translateY(-5px);
}

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

/* Title */
.movie-title-single {
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  word-wrap: break-word;
  font-weight: 700;
}

/* Meta Bar */
.post-meta-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  padding: 15px;
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-radius: 12px;
  border: 1px solid #333;
}

.post-meta-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ddd;
  font-size: 13px;
  padding: 6px 12px;
  background: rgba(229, 9, 20, 0.1);
  border-radius: 20px;
  transition: all 0.3s;
}

.post-meta-bar span:hover {
  background: rgba(229, 9, 20, 0.2);
  transform: translateY(-2px);
}

.post-meta-bar svg {
  color: #e50914;
  flex-shrink: 0;
}

/* Excerpt Section */
.movie-excerpt {
  background: linear-gradient(135deg, #1a1a1a, #1f1f1f);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border-left: 4px solid #e50914;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.movie-excerpt h3 {
  color: #e50914;
  font-size: 18px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.movie-excerpt h3 svg {
  flex-shrink: 0;
}

.movie-excerpt p {
  color: #ddd;
  line-height: 1.7;
  font-size: 14px;
  margin: 0;
  text-align: justify;
}

/* Content Section */
.movie-content-section {
  margin-bottom: 30px;
}

.section-title {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e50914;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-title svg {
  color: #e50914;
  flex-shrink: 0;
}

.movie-content {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  color: #ddd;
  line-height: 1.8;
  font-size: 15px;
  overflow: hidden !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.movie-content * {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.movie-content h2,
.movie-content h3 {
  color: #e50914;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0 5px;
}

.movie-content p {
  margin-bottom: 18px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  padding: 0 5px;
}

.movie-content a {
  color: #e50914;
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 9, 20, 0.3);
  transition: all 0.3s;
}

.movie-content a:hover {
  border-bottom-color: #e50914;
  color: #ff1f2f;
}

/* Tags Section */
.post-tags-section {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid #333;
}

.post-tags-section h3 {
  color: #e50914;
  font-size: 16px;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-tags-section svg {
  flex-shrink: 0;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-item {
  display: inline-block;
  padding: 6px 14px;
  background: #111;
  color: #ddd;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s;
  border: 1px solid #333;
}

.tag-item:hover {
  background: #e50914;
  color: #fff;
  border-color: #e50914;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

/* Content Images with Text Overlay Watermark (HDHubFlix Style) */
.content-img-wrapper {
  position: relative;
  max-width: 90% !important;
  width: 90% !important;
  margin: 20px auto !important;
  display: block !important;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

.content-img-wrapper img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Text Overlay Watermark - HDHubFlix Style */
.content-text-overlay {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 25px;
  z-index: 2;
  pointer-events: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-img-wrapper:hover {
  transform: scale(1.02);
  transition: transform 0.3s;
}

.movie-content img,
.movie-content figure img,
.movie-content a img,
.movie-content p img,
.movie-content div img {
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
}

/* Desktop */
@media (min-width: 768px) {
  .content-img-wrapper {
    max-width: 85% !important;
    width: 85% !important;
    border-radius: 12px !important;
    margin: 25px auto !important;
  }
  
  .content-text-overlay {
    padding: 12px 40px;
    font-size: 18px;
    letter-spacing: 2px;
    bottom: 20px;
  }
}

/* Related Movies */
.related-movies {
  margin-top: 50px;
  padding: 30px 0;
  background: linear-gradient(135deg, #111, #1a1a1a);
  border-radius: 12px;
  width: 100%;
  overflow-x: hidden;
}

.related-movies h2 {
  margin-bottom: 25px;
  font-size: 22px;
  text-align: center;
  padding: 0 15px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.related-movies h2 svg {
  color: #e50914;
  flex-shrink: 0;
}

/* Desktop Responsive */
@media (min-width: 768px) {
  .single-movie {
    padding: 40px 20px;
  }
  
  .movie-poster-single {
    max-width: 350px;
  }
  
  .movie-title-single {
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .post-meta-bar {
    padding: 18px 25px;
  }
  
  .post-meta-bar span {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .movie-excerpt {
    padding: 25px;
  }
  
  .movie-excerpt h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .movie-excerpt p {
    font-size: 15px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .movie-content {
    padding: 30px;
    font-size: 16px;
  }
  
  .movie-content h2,
  .movie-content h3 {
    font-size: 22px;
  }
  
  .movie-content img,
  .movie-content figure img,
  .movie-content a img,
  .movie-content p img,
  .movie-content div img {
    max-width: 85% !important;
    width: 85% !important;
    border-radius: 12px !important;
    margin: 25px auto !important;
  }
  
  .post-tags-section {
    padding: 25px;
  }
  
  .post-tags-section h3 {
    font-size: 18px;
  }
  
  .tag-item {
    padding: 8px 18px;
    font-size: 14px;
  }
  
  .related-movies {
    padding: 40px 0;
  }
  
  .related-movies h2 {
    font-size: 28px;
    margin-bottom: 35px;
  }
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */

.site-footer {
  background: #111;
  padding: 30px 0;
  text-align: center;
  border-top: 2px solid #222;
  margin-top: 50px;
}

.lazy-loading {
  text-align: center;
  padding: 30px;
  color: #999;
}

.load-more-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e50914;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.load-more-btn:hover {
  background: #b20710;
}

/* ════════════════════════════════════════════════════════════════
   DESKTOP RESPONSIVE
   ════════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .single-movie {
    padding: 40px 20px;
  }
  
  .movie-details-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .movie-poster-single {
    margin: 0;
    max-width: 100%;
  }
  
  .movie-info-single {
    padding: 0;
  }
  
  .movie-title-single {
    font-size: 32px;
    text-align: left;
    margin-bottom: 25px;
  }
  
  .movie-meta-grid {
    padding: 20px;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .meta-item {
    padding: 0 0 10px 0;
    gap: 10px;
  }
  
  .meta-label {
    font-size: 14px;
    min-width: 110px;
  }
  
  .meta-value {
    font-size: 14px;
  }
  
  .meta-value.rating {
    font-size: 18px;
  }
  
  .storyline {
    padding: 20px;
    margin-top: 20px;
  }
  
  .storyline h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .storyline p {
    font-size: 15px;
    line-height: 1.8;
  }
  
  .screenshots-section {
    margin: 50px 0;
    padding: 0;
  }
  
  .screenshots-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
    letter-spacing: 1px;
  }
  
  .screenshots-grid {
    gap: 20px;
  }
  
  .screenshots-grid img {
    width: 90% !important;
    max-width: 90% !important;
    border-radius: 12px !important;
  }
  
  .movie-content {
    padding: 30px;
    font-size: 16px;
  }
  
  .movie-content img,
  .movie-content figure img,
  .movie-content a img,
  .movie-content p img,
  .movie-content div img {
    max-width: 85% !important;
    width: 85% !important;
    border-radius: 12px !important;
  }
  
  .movie-content h2,
  .movie-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
  }
  
  .movie-content p {
    margin-bottom: 20px;
  }
  
  /* Featured Scroll Desktop */
  .featured-poster {
    width: 180px;
  }
  
  .featured-poster .movie-info {
    height: 125px;
    min-height: 125px;
    max-height: 125px;
    padding: 13px;
  }
  
  .featured-poster .movie-title {
    font-size: 13px;
    -webkit-line-clamp: 6;
  }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE SPECIFIC OVERRIDES
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
  /* Force no horizontal scroll */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  /* All major containers */
  .container,
  .main-content,
  .single-movie,
  .movie-content,
  .screenshots-section {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
  
  /* Smaller text on mobile */
  .site-title {
    font-size: 20px;
  }
  
  h1 {
    font-size: 22px !important;
    word-wrap: break-word;
  }
}