/* Font family for whole card */
.movie-card,
.movie-card * {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* Font weights and sizes from Tailwind */
.title {
  font-weight: 700; /* Tailwind font-bold */
  font-size: 1.5rem; /* text-xl */
  line-height: 2rem; /* leading-relaxed */
}

.label {
  font-weight: 400; /* font-normal */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem; /* leading-5 */
}

.value,
.value-with-icon {
  font-weight: 500; /* font-medium */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
}

.description {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem; /* leading-relaxed */
}

/* Container */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1rem; /* px-4 py-8 */
}

/* Advertisement Box */
.ad-box {
  background-color: #17202e;
  border: 1px solid #374151; /* gray-700 */
  border-radius: 0.5rem; /* rounded-lg */
  width: 100%;
  max-width: 1080px;
  height: 250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease-in-out;
}

.ad-box:hover {
  border-color: #4b5563; /* gray-600 */
}

/* Content inside box */
.ad-content {
  text-align: center;
}

.ad-content h3 {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700; /* font-bold */
  color: #9ca3af; /* text-gray-400 */
  margin-bottom: 0.5rem;
}

.ad-content p {
  font-size: 0.875rem; /* text-sm */
  color: #6b7280; /* text-gray-500 */
}

.ad-content .ad-size {
  margin-top: 1rem;
  font-size: 0.75rem; /* text-xs */
  color: #4b5563; /* text-gray-600 */
}
body {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
/* Container */
.breadcrumb-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 20px; /* py-4 with side padding */
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* space-x-2 */
  font-size: 0.875rem; /* text-sm */
}

/* Links */
.breadcrumb a {
  color: #9ca3af; /* gray-400 */
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb a.active {
  font-weight: 500; /* font-medium */
  color: #9ca3af;
}

/* Separator Icon */
.breadcrumb-separator {
  color: #6b7280; /* gray-500 */
  flex-shrink: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.auto-max {
  margin: 0 auto;
}

.auto-max-styles {
  max-width: 1120px;
  padding-left: 20px;
  padding-right: 20px;
}
.flex {
  display: flex;
  gap: 40px;
}
.w-740 {
  width: 740px;
}
.movie-card {
  margin-bottom: 2rem;
  background-color: #17202e;
  border-radius: 0.5rem;
  border: 1px solid #374151;
  overflow: hidden;
  transition: border 0.3s;
}

/* .movie-card:hover {
  border-color: #4b5563;
} */

.flex {
  display: flex;
}

.poster-container {
  position: relative;
  width: 280px;
}

.poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.poster-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.poster-container:hover .poster-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.play-button {
  background-color: #e84d67;
  color: white;
  border-radius: 9999px;
  padding: 0.75rem;
  transform: scale(0);
  transition: all 0.3s;
}

.poster-container:hover .play-button {
  transform: scale(1);
}

.rating-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.info-container {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.label {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.value,
.value-with-icon {
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.description {
  color: #9ca3af;
  line-height: 1.5rem;
  margin-bottom: 1rem;
  flex: 1;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-btn {
  background-color: #e84d67;
  color: white;
  font-weight: 500;
  padding: 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.netflix-btn {
  background-color: #111827;
  border: 1px solid #4b5563;
  color: white;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.netflix-btn:hover {
  background-color: #1f2937;
  border-color: #6b7280;
}

/* Optional: reset SVG sizes */
svg {
  display: block;
}
button {
  border: none;
}

.movie-card {
  background-color: #17202e;
  border-radius: 0.5rem;
  border: 1px solid #374151; /* Tailwind gray-700 */
  overflow: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.card-header {
  border-bottom: 1px solid #374151;
}

.tabs {
  display: flex;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 1rem 0rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  color: #9ca3af; /* gray-400 */
  background-color: rgba(232, 77, 103, 0.05); /* default bg */
  transition: all 0.2s;
  cursor: pointer;
  width: calc(738px / 7);
}

.tab:hover {
  color: #ffffff;
  border-color: #4b5563; /* gray-600 */
}

.tab.active {
  color: #e84d67;
  border-color: #e84d67;
  background-color: rgba(232, 77, 103, 0.05);
}

.card-body {
  padding: 1.5rem;
  color: #d1d5db; /* gray-300 for text */
}

.card-body h3 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.card-body p {
  line-height: 1.625rem;
  margin-bottom: 1rem;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.details-grid h4 {
  font-size: 1.125rem; /* text-lg */
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.detail span:first-child {
  color: #9ca3af; /* gray-400 */
}

.detail span:last-child {
  color: #ffffff;
}

.detail .hit {
  color: #22c55e; /* green-400 */
}

.cast-message {
  text-align: center;
  padding: 2rem 0; /* equivalent to py-8 */
  color: #9ca3af; /* Tailwind gray-400 */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.5;
}

.story-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* space-y-6 */
}

.story-section h3 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700; /* font-bold */
  color: #ffffff; /* text-white */
  margin-bottom: 1rem; /* mb-4 */
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space-y-4 */
}

.story-content p {
  color: #d1d5db; /* text-gray-300 */
  line-height: 1.75; /* leading-relaxed */
}

.story-content p strong {
  color: #ffffff; /* text-white */
}

.central-theme {
  background-color: #111827; /* bg-[#111827] */
  border-radius: 0.5rem; /* rounded-lg */
  padding: 1rem; /* p-4 */
  border-left: 0.25rem solid #e84d67; /* border-l-4 border-[#e84d67] */
}

.central-theme h4 {
  color: #ffffff; /* text-white */
  font-weight: 600; /* font-semibold */
  margin-bottom: 0.5rem; /* mb-2 */
}

.central-theme p {
  color: #d1d5db; /* text-gray-300 */
  font-size: 0.875rem; /* text-sm */
}

.movie-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* mb-6 equivalent */
}

.movie-details h3 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700; /* font-bold */
  color: #ffffff; /* text-white */
  margin-bottom: 1.5rem; /* mb-6 */
}

.movie-table {
  background-color: #111827; /* bg-[#111827] */
  border-radius: 0.5rem; /* rounded-lg */
  border: 1px solid #374151; /* border-gray-700 */
  overflow: hidden;
}

.movie-table table {
  width: 100%;
  border-collapse: collapse;
}

.movie-table tr {
  border-bottom: 1px solid #374151; /* border-b border-gray-700 */
}

.movie-table tr:last-child {
  border-bottom: none;
}

.movie-table td {
  padding: 1rem 1.5rem; /* px-6 py-4 */
}

.movie-table .label {
  color: #9ca3af; /* text-gray-400 */
  font-weight: 500; /* font-medium */
}

.movie-table .value {
  color: #ffffff; /* text-white */
}
.videos-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.videos-section h3 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700; /* font-bold */
  color: #ffffff;
  margin-bottom: 1.5rem; /* mb-6 */
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  background-color: #111827;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: background-color 0.3s;
  position: relative;
}

.video-card:hover {
  background-color: #1f2937;
}

.video-thumb {
  position: relative;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.video-card:hover .overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.play-btn {
  background-color: #e84d67;
  border: none;
  border-radius: 9999px;
  padding: 0.75rem;
  color: white;
  transform: scale(0);
  transition: all 0.3s;
  cursor: pointer;
}

.video-card:hover .play-btn {
  transform: scale(1);
}

.duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.625rem; /* text-xs */
}

.video-info {
  padding: 0.75rem;
}

.video-info h4 {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem; /* text-sm */
  margin-bottom: 0.25rem;
}

.video-info p {
  color: #9ca3af; /* text-gray-400 */
  font-size: 0.75rem; /* text-xs */
  margin: 0;
}
.user-reviews {
  font-family: sans-serif;
  color: #e4e4e7;
}

.user-reviews h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #fff;
}

.rating-breakdown {
  background-color: #111827;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.rating-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.rating-header p {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.rating-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .rating-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rating-item p {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.rating-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rating-score svg {
  width: 16px;
  height: 16px;
  fill: #facc15;
  stroke: none;
}

.rating-score span {
  font-weight: 600;
}

.rating-bar {
  background-color: #374151;
  border-radius: 9999px;
  height: 0.5rem;
  overflow: hidden;
  margin-top: 0.25rem;
}

.rating-bar .fill {
  background-color: #facc15;
  height: 100%;
  border-radius: 9999px;
}

.rating-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  border-top: 1px solid #374151;
  padding-top: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.rating-footer button {
  color: #e84d67;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s;
}

.rating-footer button:hover {
  opacity: 0.8;
}

.reviews-list .review {
  background-color: #111827;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.review-header h4 {
  font-weight: 600;
  color: #fff;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.review-meta .stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.review-meta .stars svg {
  width: 14px;
  height: 14px;
  fill: #facc15;
  stroke: none;
}

.review-meta span {
  font-size: 0.75rem;
  color: #9ca3af;
}

.review p {
  color: #d1d5db;
  font-size: 0.875rem;
  margin: 0.5rem 0;
  line-height: 1.5;
}

.review-actions {
  display: flex;
  justify-content: space-between;
}

.review-actions button {
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.2s;
  color: #9ca3af;
}

.review-actions button:hover {
  color: #fff;
}

.review-actions button:nth-child(2):hover {
  color: #e84d67;
}

.write-review {
  margin-top: 1.5rem;
}

.write-review button {
  background-color: #e84d67;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: 0.2s;
}

.write-review button:hover {
  opacity: 0.8;
}
.fan-photos-section {
  color: white;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.fan-photos-section h3 {
  font-size: 1.25rem; /* 20px */
  font-weight: bold;
  margin-bottom: 24px;
}

.fan-photos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .fan-photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fan-photo {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.fan-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s;
}

.fan-photo:hover img {
  transform: scale(1.05);
}

.fan-photo .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 12px;
  transition: background-color 0.3s;
}

.fan-photo:hover .overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.upload-button {
  margin-top: 24px;
}

.upload-button button {
  background-color: #e84d67;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.upload-button button:hover {
  background-color: rgba(232, 77, 103, 0.8);
}

/* body {
  background-color: #111827;
  color: #fff;
  font-family: 'Arial', sans-serif;
} */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cast-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cast-card {
  background-color: #17202e;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: background-color 0.3s;
}

.cast-card:hover {
  background-color: #1f2937;
}

.cast-card img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: transform 0.3s;
}

.cast-card:hover img {
  transform: scale(1.05);
}

.cast-info {
  padding: 0.75rem;
}

.cast-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
}

.cast-info .role {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}

.cast-info .character {
  font-size: 0.75rem;
  color: #e84d67;
}

.center-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.center-btn button {
  background-color: #e84d67;
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.center-btn button:hover {
  background-color: rgba(232, 77, 103, 0.8);
}

/* Crew table */
.crew-table-wrapper {
  overflow-x: auto;
}

.crew-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #17202e;
  border-radius: 0.5rem;
  overflow: hidden;
}

.crew-table td {
  padding: 1rem 1.5rem;
}

.crew-table tr {
  border-bottom: 1px solid #374151;
}

.crew-table td:first-child {
  color: #9ca3af;
  font-weight: 500;
  width: 35%;
}

.crew-table td:last-child {
  color: #fff;
}

.trailer-section {
  margin: 2rem 0;
}

.trailer-section h3 {
  font-size: 1.25rem; /* 20px */
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.trailer-card {
  background-color: #17202e;
  border: 1px solid #374151; /* equivalent to gray-700 */
  border-radius: 0.5rem; /* 8px */
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.trailer-image-wrapper {
  position: relative;
}

.trailer-image-wrapper img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.overlay:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.play-button {
  background-color: #e84d67;
  border: none;
  border-radius: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: scale(1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.play-button:hover {
  background-color: rgba(232, 77, 103, 0.8);
  transform: scale(1.1);
}

.duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
}

.videos-section {
  margin: 2rem 1rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  background-color: #17202e;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: background-color 0.3s;
}

.video-card:hover {
  background-color: #1f2937;
}

.video-wrapper {
  position: relative;
}

.video-wrapper img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.video-card:hover .overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.play-button {
  background-color: #e84d67;
  border: none;
  border-radius: 50%;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s, background-color 0.3s;
  cursor: pointer;
}

.video-card:hover .play-button {
  transform: scale(1);
}

.play-button:hover {
  background-color: rgba(232, 77, 103, 0.8);
}

.more-videos {
  text-align: center;
  margin-top: 1.5rem;
}

.more-videos button {
  background-color: #e84d67;
  border: none;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.more-videos button:hover {
  background-color: rgba(232, 77, 103, 0.8);
}

.carousel-section {
  padding: 2rem;
}

.carousel-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.carousel-wrapper {
  position: relative;
}

.seasons-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 2rem;
  scroll-behavior: smooth;
}

.seasons-container::-webkit-scrollbar {
  display: none;
}

.season-card {
  flex-shrink: 0;
  width: 160px;
  background: #17202e;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}

.season-card:hover {
  background: #1f2937;
}

.season-image-wrapper {
  position: relative;
}

.season-image-wrapper img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.3s;
}

.season-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}

.season-card:hover .overlay {
  background: rgba(0, 0, 0, 0.5);
}

.play-btn {
  background: #e84d67;
  border-radius: 50%;
  padding: 0.75rem;
  transform: scale(0);
  transition: all 0.3s;
  border: none;
}

.season-card:hover .play-btn {
  transform: scale(1);
}

.episodes {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.7rem;
}

.season-info {
  padding: 0.75rem;
}

.season-info h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}

.season-card:hover .season-info h4 {
  color: #e84d67;
}

.season-info p {
  color: #9ca3af;
  font-size: 0.75rem;
  margin: 0;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 9999px;
  padding: 0.5rem;
  z-index: 10;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.scroll-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.scroll-btn.left {
  left: 0;
}

.scroll-btn.right {
  right: 0;
}
.sidebar {
  display: none; /* hidden */
  width: 300px; /* inline style moved here */
}

.ad-card {
  width: 300px;
  height: 600px;
  background-color: #17202e; /* bg-[#17202e] */
  border: 1px solid #374151; /* border-gray-700 */
  border-radius: 0.5rem; /* rounded-lg */
  display: flex; /* flex */
  align-items: center; /* items-center */
  justify-content: center; /* justify-center */
  transition: border-color 0.2s; /* transition-colors */
}

.ad-card:hover {
  border-color: #4b5563; /* hover:border-gray-600 */
}

.ad-content {
  text-align: center; /* text-center */
}

.ad-content h3 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700; /* font-bold */
  color: #9ca3af; /* text-gray-400 */
  margin-bottom: 0.5rem; /* mb-2 */
}

.ad-content p {
  font-size: 0.875rem; /* text-sm */
  color: #6b7280; /* text-gray-500 */
}

.ad-size {
  margin-top: 1rem; /* mt-4 */
  font-size: 0.75rem; /* text-xs */
  color: #4b5563; /* text-gray-600 */
}

/* Show on large screens (≥1024px like Tailwind's lg breakpoint) */
@media (min-width: 1024px) {
  .sidebar {
    display: block;
  }
}
.birthday-card {
  width: 300px;
  background: #17202e;
  border: 1px solid #374151; /* gray-700 */
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}

.birthday-header {
  background: #242a38;
  padding: 1rem;
}

.birthday-header h3 {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem; /* text-lg */
  margin: 0;
}

.birthday-list {
  max-height: 24rem; /* h-96 */
  overflow-y: auto;
}

.birthday-item {
  position: relative;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(55, 65, 81, 0.5); /* gray-700/50 */
  cursor: pointer;
  transition: background 0.3s;
}

.birthday-item:last-child {
  border-bottom: none;
}

.birthday-item:hover {
  background: #1f2937;
}

.birthday-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(232, 77, 103, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.birthday-item:hover .birthday-overlay {
  opacity: 1;
}

.birthday-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.birthday-img img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #4b5563; /* gray-600 */
  transition: border-color 0.3s;
}

.birthday-item:hover .birthday-img img {
  border-color: #e84d67;
}

.birthday-text h4 {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  margin: 0 0 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}

.birthday-item:hover .birthday-text h4 {
  color: #e84d67;
}

.birthday-date {
  color: #ffffff;
  font-size: 0.75rem; /* text-xs */
}

.birthday-date span {
  font-weight: 500;
}

.birthday-highlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.25rem;
  height: 0;
  background: #e84d67;
  transition: height 0.3s;
}

.birthday-item:hover .birthday-highlight {
  height: 100%;
}

.birthday-footer {
  padding: 0.75rem;
  background: #111827;
  border-top: 1px solid #374151;
  text-align: center;
}

.birthday-footer button {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #e84d67;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.birthday-footer button:hover {
  background: rgba(232, 77, 103, 0.8);
}

/* ✅ Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #1f2937;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #e84d67;
  border-radius: 2px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 77, 103, 0.8);
}
.upcoming-movies-card {
  width: 300px;
  background: #17202e;
  border: 1px solid #374151;
  border-radius: 8px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

/* Header */
.upcoming-movies-card .header {
  background: #242a38;
  padding: 1rem;
}
.upcoming-movies-card .header h3 {
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  margin: 0;
}

/* Scrollable List */
.movies-list {
  max-height: 24rem;
  overflow-y: auto;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #1f2937;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #e84d67;
  border-radius: 2px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 77, 103, 0.8);
}

/* Movie Item */
.movie-item {
  position: relative;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(55, 65, 81, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}
.movie-item:last-child {
  border-bottom: none;
}
.movie-item:hover {
  background: #1f2937;
}

/* Gradient Hover Overlay */
.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(232, 77, 103, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.movie-item:hover .gradient-overlay {
  opacity: 1;
}

/* Movie Content */
.movie-content {
  position: relative;
  z-index: 1;
}
.movie-content h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  transition: color 0.3s;
}
.movie-item:hover h4 {
  color: #e84d67;
}

/* Date */
.movie-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #9ca3af;
  font-size: 0.75rem;
  transition: color 0.3s;
}
.movie-item:hover .movie-date {
  color: #d1d5db;
}
.movie-date svg {
  stroke: currentColor;
}

/* Left Highlight Bar */
.left-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #e84d67;
  transition: height 0.3s;
}
.movie-item:hover .left-bar {
  height: 100%;
}

/* Footer */
.footer {
  background: #111827;
  border-top: 1px solid #374151;
  padding: 0.75rem;
  text-align: center;
}
.footer button {
  background: #e84d67;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.footer button:hover {
  background: rgba(232, 77, 103, 0.8);
}
.movies-spotlight {
  width: 300px;
  background: #17202e;
  border: 1px solid #374151; /* gray-700 */
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}

.movies-header {
  background: #242a38;
  padding: 1rem;
}

.movies-header h3 {
  color: #fff;
  font-size: 1.125rem; /* text-lg */
  font-weight: bold;
}

.movies-list {
  max-height: 20rem; /* ~80 tailwind */
  overflow-y: auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.movie-card {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* .movie-card:hover {
  background: #1f2937;
  border-color: #4b5563; 
} */

.movie-image {
  position: relative;
  overflow: hidden;
}

.movie-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.3s ease;
}

/* .movie-card:hover img {
  transform: scale(1.05);
} */

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    transparent,
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .overlay {
  opacity: 1;
}

.tag {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.movie-card:hover .tag {
  opacity: 1;
}

.movie-info {
  padding: 0.75rem;
}

.movie-info h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.movie-card:hover h4 {
  color: #e84d67;
}

.movies-footer {
  background: #111827;
  border-top: 1px solid #374151;
  padding: 0.75rem;
  text-align: center;
}

.view-all {
  background: #e84d67;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-all:hover {
  background: rgba(232, 77, 103, 0.8);
}

/* Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #1f2937;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #e84d67;
  border-radius: 2px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 77, 103, 0.8);
}
.top-listing {
  width: 300px;
  background: #17202e;
  border: 1px solid #374151;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.top-header {
  background: #242a38;
  padding: 1rem;
}

.top-header h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
}

.top-list {
  max-height: 24rem; /* ~96 tailwind */
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top-card {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 8px;
  /* overflow: hidden; */
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.top-card:hover {
  background: #1f2937;
  border-color: #4b5563;
}

.top-image {
  position: relative;
  overflow: hidden;
}

.top-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 0.3s ease;
}

.top-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    transparent,
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.top-card:hover .overlay {
  opacity: 1;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.play-btn button {
  background: #e84d67;
  border: none;
  border-radius: 50%;
  padding: 0.5rem;
  cursor: pointer;
  transform: scale(0);
  transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn button:hover {
  background: rgba(232, 77, 103, 0.8);
}

.top-card:hover .play-btn {
  opacity: 1;
}

.top-card:hover .play-btn button {
  transform: scale(1);
}

.tag {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.top-card:hover .tag {
  opacity: 1;
}

.top-info {
  padding: 0.75rem;
}

.top-info h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  height: 2.5rem; /* clamp height */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}

.top-card:hover h4 {
  color: #e84d67;
}

.top-footer {
  background: #111827;
  border-top: 1px solid #374151;
  padding: 0.75rem;
  text-align: center;
}

.view-all {
  background: #e84d67;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-all:hover {
  background: rgba(232, 77, 103, 0.8);
}

/* Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #1f2937;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #e84d67;
  border-radius: 2px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 77, 103, 0.8);
}
/* Wrapper */
.box-office {
  background: transparent;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  width: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header */
.box-office-header {
  background: #242a38;
  padding: 1rem;
}
.box-office-header h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

/* Scroll area */
.box-office-body {
  max-height: 384px; /* same as max-h-96 */
  overflow-y: auto;
}

/* Row Item */
.box-office-row {
  position: relative;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(55, 65, 81, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}
.box-office-row:last-child {
  border-bottom: none;
}
.box-office-row:hover {
  background: #1f2937;
}

/* Left red bar animation */
.row-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #e84d67;
  transition: height 0.3s ease;
}
.box-office-row:hover .row-highlight {
  height: 100%;
}

/* Gradient overlay */
.row-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(232, 77, 103, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.box-office-row:hover .row-gradient {
  opacity: 1;
}

/* Content layout */
.row-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left section */
.row-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
.row-rank {
  width: 1.5rem;
  height: 1.5rem;
  background: #e84d67;
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.row-details h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.25rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}
.box-office-row:hover h4 {
  color: #e84d67;
}
.row-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.row-meta .amount {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.row-meta .status {
  font-size: 0.75rem;
  font-weight: 500;
}
.status.hit {
  color: #34d399; /* green */
}
.status.average {
  color: #facc15; /* yellow */
}
.status.flop {
  color: #f87171; /* red */
}

/* Right section */
.row-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.row-right .change {
  font-size: 0.75rem;
  font-weight: 500;
}
.change.up {
  color: #34d399;
}
.change.down {
  color: #f87171;
}
.icon.up {
  color: #34d399;
}
.icon.down {
  color: #f87171;
}

/* Footer */
.box-office-footer {
  background: #111827;
  border-top: 1px solid #374151;
  padding: 0.75rem;
  text-align: center;
}
.box-office-footer button {
  background: #e84d67;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.box-office-footer button:hover {
  background: rgba(232, 77, 103, 0.8);
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #1f2937;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #e84d67;
  border-radius: 2px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 77, 103, 0.8);
}

.ott-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px;
  font-family: system-ui, sans-serif;
}
.ott-header {
  margin-bottom: 2rem;
}

.ott-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.ott-header p {
  color: #9ca3af;
}

.ott-card {
  background: #17202e;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 16px;
}

.ott-card-header {
  width: 100%;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.ott-card-header:hover {
  background: #1f2937;
}

.ott-card-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ott-card-title-wrapper h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.ott-card-title-wrapper p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #9ca3af;
}
.ott-card-chevron {
  transform: rotate(180deg);
}

.ott-card-chevron svg {
  color: #9ca3af;
}

.ott-card-content {
  padding: 0 24px 24px 24px;
}

.ott-card-content p {
  color: #d1d5db;
  margin-top: 16px;
  margin-bottom: 24px;
  line-height: 1.5rem;
}

.ott-card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .ott-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ott-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.movie-card {
  background: #111827;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

/* .movie-card:hover {
  transform: scale(1.02);
  border-color: #6b7280;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
} */

.movie-thumb {
  position: relative;
  overflow: hidden;
}

.movie-thumb img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.movie-card:hover img {
  transform: scale(1.05);
}

.movie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.movie-card:hover .movie-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.play-btn {
  background: #e84d67;
  border-radius: 9999px;
  padding: 12px;
  transform: scale(0);
  transition: all 0.3s;
}

.movie-card:hover .play-btn {
  transform: scale(1);
}

.movie-lang {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.625rem;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 0.25rem;
}

.movie-rating {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  gap: 2px;
}

.movie-info {
  padding: 16px;
}

.movie-info h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.movie-card:hover .movie-info h4 {
  color: #e84d67;
}

.movie-info p {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.watch-btn {
  width: 100%;
  background: #17202e;
  border: 1px solid #4b5563;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.watch-btn:hover {
  background: #1f2937;
  border-color: #e84d67;
}

.view-all {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.view-all button {
  background: #e84d67;
  color: white;
  padding: 8px 24px;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
}

.view-all button:hover {
  background: rgba(232, 77, 103, 0.8);
}
.ott-card .ott-card-content {
  display: none;
}

.ott-card.active .ott-card-chevron {
  transform: rotate(0deg);
}

.ott-card.active .ott-card-content {
  display: block;
}
.faq-section {
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 32px;
}
.faq-header {
  margin-bottom: 2rem;
}

.faq-header h2 {
  font-size: 1.875rem; /* 30px */
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.faq-header p {
  color: #9ca3af;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #17202e;
  border: 1px solid #374151;
  border-radius: 0.5rem; /* 8px */
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: #4b5563;
}

.faq-button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-button:hover {
  background-color: #1f2937;
}

.faq-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(232, 77, 103, 0.2);
}

.faq-question {
  color: #ffffff;
  font-size: 1rem; /* 16px */
  font-weight: 500;
}

.faq-icon svg {
  color: #9ca3af;
  transition: transform 0.3s ease, color 0.2s;
}

.faq-button:hover .faq-icon svg {
  color: #ffffff;
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #d1d5db;
  font-size: 0.875rem; /* 14px */
  line-height: 1.5rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust depending on content */
  padding: 12px 20px;
}

.faq-content {
  padding: 0 20px 20px 20px; /* px-5 pb-5 */
  border-top: 1px solid #374151; /* border-t border-gray-700 */
}

.faq-text {
  padding-top: 16px; /* pt-4 */
}

.faq-text p {
  color: #d1d5db; /* text-gray-300 */
  line-height: 1.625; /* leading-relaxed */
}
.faq-item.active .faq-content {
  display: block;
}
.faq-item .faq-content {
  display: none;
}

/* Layout */
.rating-review-section {
  display: grid;
  gap: 1.5rem;
}

/* Rating Card */
.rating-card {
  background: #17202e;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.rating-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.rating-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}
.rating-subtitle {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.rating-score-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rating-main {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
}
.rating-outof {
  color: #9ca3af;
}
.icon-star {
  color: #facc15; /* Tailwind yellow-400 */
}

/* Rating breakdowns */
.rating-item {
  margin-bottom: 1rem;
}
.rating-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rating-label {
  color: #fff;
  font-weight: 500;
}
.rating-value {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.rating-num {
  color: #fff;
  font-weight: 600;
}
.rating-outof-sm {
  color: #9ca3af;
  font-size: 0.875rem;
}
.progress-bar {
  background: #374151;
  height: 0.5rem;
  border-radius: 9999px;
  margin-top: 0.25rem;
}
.progress-fill {
  background: #facc15;
  height: 0.5rem;
  border-radius: 9999px;
  transition: width 1s ease-out;
}
.rating-desc {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Review Card */
.review-card {
  background: #17202e;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  overflow: hidden;
}
.review-header {
  background: #242a38;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem;
}
.review-list {
  max-height: 24rem;
  overflow-y: auto;
}
.review-item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}
.review-avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: #e84d67;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-user {
  color: #fff;
}
.review-content {
  flex: 1;
  min-width: 0;
}
.review-header-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.review-name {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.review-score {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
}
.review-text {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-date {
  color: #9ca3af;
  font-size: 0.75rem;
}
.review-helpful {
  color: #9ca3af;
  font-size: 0.75rem;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}
.review-helpful:hover {
  color: #fff;
}
/* Card Container */
.review-form-card {
  background: #17202e;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  overflow: hidden;
  height: fit-content;
}

/* Header */
.review-form-header {
  background: #242a38;
  padding: 1rem;
}
.review-form-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}
.review-form-subtitle {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Form */
.review-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-label {
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea {
  width: 93%;
  padding: 0.75rem 1rem;
  background: #111827;
  color: #fff;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  border-color: #e84d67;
  outline: none;
  box-shadow: 0 0 0 2px rgba(232, 77, 103, 0.2);
}
.form-textarea {
  resize: none;
}

/* Rating Stars */
.rating-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.star-btn {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s;
}
.star-btn:hover {
  color: #facc15;
}
.star-icon {
  display: block;
}
.rating-hint {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: #e84d67;
  color: #fff;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
}
.submit-btn:hover {
  background: rgba(232, 77, 103, 0.8);
}
.submit-btn:disabled {
  background: rgba(232, 77, 103, 0.5);
}
.send-icon {
  stroke: currentColor;
}

/* Terms */
.form-terms {
  color: #9ca3af;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.5;
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem; /* 8 = 32px */
}

@media (min-width: 1024px) {
  .grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}
