/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  background: #0a0a0a;
  color: #e8e8e8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
header {
  padding: 18px 24px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== LAYOUT ===== */
.container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  padding: 20px 24px;
}

.container-wrapper {
  padding: 8px 24px 48px;
}

.section-title {
  margin: 28px 0 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: #fff;
}

/* ===== SERVICE CARDS ===== */
.card {
  background: #141414;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.15s, background 0.15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.card:hover {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.15);
}

.card.selected {
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.08); /* Faint green background */
}

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  padding: 3px;
}

.title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.1px;
}

.price {
  font-size: 12px;
  color: #888;
}

/* Bundled-out state */
.card.bundled-out {
  opacity: 0.45;
  border-color: rgba(255,255,255,0.05) !important;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}

.card.bundled-out::after {
  content: "In bundle";
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255,255,255,0.12);
  color: #aaa;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 7px;
  border-radius: 4px;
}

.card.bundled-out .logo { opacity: 0.4; }

/* ===== SUMMARY ===== */
.summary {
  padding: 20px 24px;
  background: #0f0f0f;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.summary h2 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
}

.bundle-box {
  padding: 14px;
  margin-top: 12px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
}

/* ===== SELECTED CHIPS ===== */
.selected-chip {
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
}

.selected-chip img { width: 14px; height: 14px; }

.remove-x {
  cursor: pointer;
  color: #666;
  font-weight: 500;
  line-height: 1;
}

.remove-x:hover { color: #4ade80; }

/* ===== BUNDLE ROWS ===== */
.bundle {
  border-radius: 6px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: #141414;
  transition: border-color 0.15s;
}

.bundle:hover { border-color: rgba(255,255,255,0.15); }

.bundle-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bundle-title {
  font-weight: 600;
  font-size: 13px;
  color: #e8e8e8;
}

.bundle-desc {
  font-size: 12px;
  color: #666;
}

.bundle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-top: 12px;
  user-select: none;
}

#bundle-toggle {
  font-size: 13px;
  color: #666;
}

.bundles-collapsed { display: none; }
.bundles-expanded {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===== BUTTONS ===== */
button {
  padding: 9px 16px;
  margin-top: 10px;
  background: #4ade80;
  color: #121212;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.15s;
}

button:hover { background: #22c55e; }

.bundle-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #e8e8e8;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s;
}

.bundle-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}

/* ===== SEARCH ===== */
.search-bar {
  padding: 16px 24px;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.search-input-wrapper {
  display: flex;
  gap: 10px;
  max-width: 680px;
  margin: 0 auto;
}

#search-input {
  flex: 1;
  padding: 12px 16px;
  font-size: 15px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: #e8e8e8;
  outline: none;
  transition: border-color 0.15s;
}

#search-input::placeholder { color: #555; }

#search-input:focus { border-color: rgba(255,255,255,0.3); }

#search-btn {
  padding: 0 24px;
  background: #4ade80;
  color: #121212;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 0;
  font-size: 14px;
}

#search-btn:hover { background: #22c55e; }

/* ===== SEARCH RESULTS ===== */
#search-results { padding: 0 24px 32px; }

#search-results .section-title { margin-top: 20px; }

#search-results .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  padding: 10px 0;
}

#search-results .card {
  width: 100%;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #141414;
  display: flex;
  flex-direction: column;
}

#search-results .card:hover { transform: scale(1.03); }

#search-results .card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  display: block;
}

#search-results .title {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

#search-results .price {
  font-size: 11px;
  color: #777;
  padding: 2px 10px 10px;
}

@media (max-width: 480px) {
  #search-results .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 5px 0;
  }
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-content {
  display: flex;
  flex-direction: column;
  background: #141414;
  width: 95%;
  max-width: 780px;
  max-height: 90vh;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.modal-header {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.source-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #1a1a1a;
  border-radius: 6px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.source-item img { width: 38px; height: 38px; object-fit: contain; }

/* Video embed */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 6px;
  background: #000;
}

.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.modal-col { min-width: 0; }

@media (max-width: 650px) {
  .modal-grid { grid-template-columns: 1fr; gap: 16px; }
  .modal-body { padding: 14px; }
}

/* ===== HORIZONTAL SCROLL ROWS ===== */
#trending-results, #theaters-results {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 24px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

#trending-results::-webkit-scrollbar,
#theaters-results::-webkit-scrollbar { display: none; }

#trending-results .card,
#theaters-results .card {
  flex: 0 0 auto;
  width: 130px;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
}

#trending-results .card img,
#theaters-results .card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
}

#trending-results .title,
#theaters-results .title {
  font-size: 13px;
  margin: 8px 8px 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

#trending-results .price,
#theaters-results .price {
  font-size: 11px;
  color: #777;
  margin: 0 8px 8px;
}

/* ===== GENRE ROWS ===== */
.genre-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 24px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.genre-row::-webkit-scrollbar { display: none; }

.genre-row .card {
  flex: 0 0 auto;
  width: 130px;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
}

.genre-row .card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
}

.genre-row .title {
  font-size: 13px;
  margin: 8px 8px 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.genre-row .price { font-size: 11px; color: #777; margin: 0 8px 8px; }

/* ===== ACCORDION ===== */
.accordion { margin: 0 24px 20px; }

.accordion-item {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  user-select: none;
  transition: background 0.15s;
}

.accordion-header:hover { background: #1a1a1a; }

.accordion-icon {
  font-size: 16px;
  color: #888;
  transition: transform 0.2s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #0f0f0f;
}

.accordion-item.active .accordion-content {
  max-height: 8000px;
  padding: 8px 0;
}

.accordion-item.active .accordion-icon { transform: rotate(180deg); }

/* ===== PLAN SELECTOR ===== */
.plan-section { padding: 20px 24px; }

.plan-box {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 20px;
}

/* ===== TITLE PAGE ===== */
#title-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.page { padding-bottom: 48px; }

.back-btn {
  background: rgba(255,255,255,0.07);
  color: #e8e8e8;
  border: none;
  padding: 9px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 24px;
  transition: background 0.15s;
}

.back-btn:hover { background: rgba(255,255,255,0.12); }

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .hero { flex-direction: row; align-items: flex-start; }
}

.poster {
  width: 100%;
  max-width: 280px;
  border-radius: 6px;
  align-self: center;
  display: block;
}

@media (min-width: 768px) {
  .poster { width: 260px; flex-shrink: 0; align-self: flex-start; }
}

.info { flex: 1; }

.info h1.title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}

@media (min-width: 768px) {
  .info h1.title { font-size: 38px; }
}

/* Meta row */
.meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.meta span {
  background: rgba(255,255,255,0.06);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.08);
}

.meta .rating {
  background: rgba(255,220,0,0.1);
  border-color: rgba(255,220,0,0.18);
  color: #ffc;
  margin-bottom: 0;
}

.maturity-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #aaa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.rating { font-size: 18px; margin-bottom: 20px; color: #ffd700; }

.overview {
  line-height: 1.65;
  font-size: 15px;
  color: #bbb;
  margin-bottom: 24px;
}

/* Providers */
.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.provider {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.07);
}

.provider img { width: 28px; height: 28px; object-fit: contain; border-radius: 4px; }

/* Trailer */
.trailer { margin-top: 36px; }

.trailer h2 { margin-bottom: 14px; font-size: 20px; font-weight: 600; }

.trailer iframe {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  border: none;
  background: #000;
}

.muted { color: #666; font-style: normal; }

/* ===== CAST ===== */
.cast-section { margin: 48px 0 32px; }

.cast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cast-header h2 { margin: 0; font-size: 20px; font-weight: 600; }

.cast-arrows { display: flex; gap: 8px; }

.cast-arrow {
  background: rgba(255,255,255,0.07);
  color: #e8e8e8;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.cast-arrow:hover { background: rgba(255,255,255,0.15); }

.cast-grid-horizontal {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 6px 0 18px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.cast-grid-horizontal::-webkit-scrollbar { display: none; }

.cast-card {
  flex: 0 0 auto !important;
  width: 115px !important;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.15s;
}

.cast-card:hover { opacity: 0.8; }

.cast-card img,
.cast-card .no-image {
  width: 100% !important;
  height: 155px !important;
  object-fit: cover;
  border-radius: 6px;
}

.cast-card .no-image {
  background: #1c1c1c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
}

.cast-name { font-weight: 600; margin-top: 8px; font-size: 13px; color: #e0e0e0; }
.cast-character { font-size: 12px; color: #777; line-height: 1.3; }

/* ===== SIMILAR ===== */
.similar-section { margin: 48px 0 32px; }

.similar-section h2 { margin-bottom: 16px; font-size: 20px; font-weight: 600; }

.similar-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.similar-grid::-webkit-scrollbar { display: none; }

.similar-card { flex: 0 0 auto; width: 138px; cursor: pointer; }

.similar-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  border-radius: 6px;
}

.similar-card .title { font-size: 13px; margin-top: 8px; font-weight: 600; }
.similar-card .price { font-size: 12px; color: #777; }

/* ===== WATCH SECTION ===== */
.watch-section { display: none; }

/* ===== HERO GRID ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.poster-container { display: flex; justify-content: center; }

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 280px 1fr; gap: 36px; align-items: start; }
  .poster-container { justify-content: flex-start; }
}

.hero-info h3 { margin: 22px 0 10px; font-size: 18px; font-weight: 600; }
.hero-info p { margin: 8px 0; color: #aaa; font-size: 14px; }

.no-image-big {
  width: 100%;
  max-width: 280px;
  height: 390px;
  background: #1c1c1c;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: #444;
}

/* ===== WHAT'S NEW TABS ===== */
.whatsnew-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap; /* Switched to nowrap for sliding */
  margin-bottom: 20px;
  padding: 0 24px 20px; /* Added some padding to the bottom so the scrollbar doesn't clip */
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.whatsnew-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: #aaa;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap; /* Ensures text doesn't wrap to new lines */
  flex: 0 0 auto; /* Forces them not to shrink when scrolling */
  transition: all 0.15s;
}

.tab-btn:hover { background: rgba(255,255,255,0.06); color: #fff; }

.tab-btn.active {
  background: #4ade80;
  color: #121212;
  font-weight: 700;
  border-color: #4ade80;
}

.new-netflix-row {
  display: flex !important;
  gap: 12px !important;
  overflow-x: auto !important;
  padding: 10px 24px 28px !important;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.new-netflix-row::-webkit-scrollbar { display: none; }

.new-netflix-row .card {
  flex: 0 0 auto !important;
  width: 130px !important;
  min-width: 130px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 4px;
  background: #141414;
}

.new-netflix-row .card img {
  width: 100% !important;
  height: 175px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  display: block !important;
}

/* ===== WHAT'S NEW PAGE GRID ===== */
.whatsnew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 18px;
  padding: 10px 24px;
}

.whatsnew-card { width: 100%; }

.whatsnew-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 6px;
}

.whatsnew-card .title,
.new-netflix-row .card .title {
  font-size: 13px;
  padding: 8px 12px 2px !important;
  margin: 0 !important;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.whatsnew-card .price,
.new-netflix-row .card .price {
  font-size: 12px;
  color: #777;
  padding: 2px 12px 12px !important;
  margin: 0 !important;
}

/* ===== PROFILE ACCORDION ===== */
.profile-accordion {
  background: #141414;
  border-radius: 6px;
  margin: 20px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}

.profile-header {
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  transition: background 0.15s;
}

.profile-header:hover { background: #1f1f1f; }

.profile-content { display: none; padding: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.profile-content.open { display: block; }

.profile-section { margin-bottom: 16px; }

.profile-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px; color: #777; }

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 8px;
}

.profile-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  background: #1a1a1a;
  padding: 10px 12px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, border-color 0.15s;
}

.profile-option:hover { background: #222; border-color: rgba(255,255,255,0.12); }

.profile-actions { display: flex; gap: 8px; margin-top: 12px; }

.profile-btn {
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  margin-top: 0;
  transition: opacity 0.15s;
}

.profile-btn.primary { background: #e8e8e8; color: #0a0a0a; }
.profile-btn.primary:hover { background: #fff; }

.profile-btn.danger { background: transparent; border: 1px solid rgba(229,9,20,0.5); color: #e50914; }
.profile-btn.danger:hover { background: rgba(229,9,20,0.08); border-color: #e50914; }

/* ===== SUBMENU ===== */
.submenu {
  display: none;
  margin-top: 10px;
  background: #0f0f0f;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

.submenu label {
  display: block;
  font-size: 13px;
  color: #bbb;
  margin: 5px 0;
  cursor: pointer;
}

/* ===== OVERVIEW SECTION ===== */
.overview-section { margin: 32px 0; }

/* ===== FOOTER ===== */
.app-footer {
  margin-top: 48px;
  padding: 36px 24px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  color: #555;
}

.footer-content { max-width: 560px; margin: 0 auto; }

.app-footer p {
  font-size: 12px;
  line-height: 1.6;
  margin: 4px 0;
}

.copyright {
  font-weight: 600;
  margin-top: 12px !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 11px !important;
  color: #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  #title-page { padding: 16px; }
  .info h1.title { font-size: 24px; }
  .poster { max-width: 220px; }
  .container-wrapper { padding: 8px 16px 40px; }
  .search-bar { padding: 14px 16px; }
}

@media (min-width: 1024px) {
  .hero { gap: 44px; }
}