* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

header {
  background: #141414;
  padding: 0.75rem 3%;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #2a2a2a;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.back-home-btn {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  transition: background 0.2s ease;
  margin-right: 0.5rem;
}

.back-home-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff2d55;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff2d55, #ff6b6b);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.search-box {
  flex: 1;
  max-width: 400px;
  margin: 0 2rem;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 0.5rem 2.5rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #2a2a2a;
  color: #fff;
  font-size: 0.9rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.search-box input:focus {
  outline: none;
  border-color: #ff2d55;
  background: #1a1a1a;
}

.search-box input::placeholder {
  color: #666;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-right button {
  background: none;
  border: none;
  color: #a0a0a0;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-right button:hover {
  color: #fff;
}

.nav-btn {
  background: none;
  border: none;
  color: #a0a0a0;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-btn:hover {
  color: #fff;
}

.lang-btn {
  font-size: 0.85rem !important;
  font-weight: 600;
}

.sub-nav {
  background: #000;
  padding: 0.75rem 3%;
  border-bottom: 1px solid #2a2a2a;
}

.sub-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
}

.sub-nav-item {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.sub-nav-item:hover,
.sub-nav-item.active {
  color: #ff2d55;
  border-color: #ff2d55;
}

.carousel-section {
  padding: 1.5rem 3%;
}

.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
}

.carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1e1e1e;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  height: 200px;
  align-items: center;
  overflow: hidden;
}

.carousel-image {
  width: 110px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  margin-left: 1rem;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-content {
  flex: 1;
  padding: 1rem;
  overflow: hidden;
}

.carousel-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-content .episode-count {
  color: #ff2d55;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.carousel-content p {
  color: #a0a0a0;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carousel-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.carousel-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 45, 85, 0.2);
  color: #ff2d55;
  font-size: 0.75rem;
  border-radius: 4px;
}

.carousel-watch-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #ff2d55;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.carousel-watch-btn:hover {
  background: #ff4d75;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.carousel-btn {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(255, 45, 85, 0.8);
}

.carousel-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s ease;
}

.carousel-indicator.active {
  background: #ff2d55;
}


.promo-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-content p {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.promo-btn {
  background: #fff;
  color: #ff2d55;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.promo-btn:hover {
  transform: scale(1.05);
}

.section {
  padding: 1rem 3%;
  margin-bottom: 1rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 1rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.section-title span {
  color: #ff2d55;
}

.section-link {
  color: #ff2d55;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.section-link:hover {
  text-decoration: underline;
}

.drama-scroll {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.drama-card {
  cursor: pointer;
  transition: transform 0.2s ease;
  width: 100%;
}

.drama-card:hover {
  transform: translateY(-3px);
}

.drama-card .poster {
  width: 100%;
  height: 230px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5rem;
}

.drama-card .poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

.drama-card .poster .badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: #ff2d55;
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 600;
}

.drama-card .info {
  padding: 0 2px;
}

.drama-card .info h3 {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drama-card .info .episode-count {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.25rem;
}

.player-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 3%;
  box-sizing: border-box;
}

.video-player {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.video-player video {
  width: 100%;
  height: 400px;
}

.video-wrapper {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.video-wrapper video {
  width: 100%;
  height: auto;
}

.player-header {
  background: #000;
  padding: 0.75rem 3%;
}

.player-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.menu-btn,
.share-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.breadcrumb {
  background: #000;
  padding: 0.5rem 3%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: #a0a0a0;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ff2d55;
}

.breadcrumb-item {
  color: #a0a0a0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.player-info {
  padding: 1.5rem 3%;
  border-bottom: 1px solid #2a2a2a;
}

.player-info h1 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.drama-stats {
  margin-bottom: 1rem;
}

.stat-item {
  color: #a0a0a0;
  font-size: 0.9rem;
}

/* .action-buttons {
    display: flex;
    gap: 0.5rem;
} */

.action-btn {
  flex: 1;
  max-width: 150px;
  padding: 0.75rem;
  background: #2a2a2a;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.action-btn:hover {
  background: #3a3a3a;
}

.episode-section {
  padding: 1.5rem 3%;
  border-bottom: 1px solid #2a2a2a;
  width: 100%;
  box-sizing: border-box;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.section-header-row .section-title {
  font-size: 1.1rem;
}

.episode-section .episode-count {
  color: #a0a0a0;
  font-size: 0.9rem;
}

.episode-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.episode-scroll::-webkit-scrollbar {
  display: none;
}

.episode-item {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  background: #2a2a2a;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.episode-item:hover {
  background: #3a3a3a;
}

.episode-item.active {
  background: #ff2d55;
}

.episode-item.locked {
  background: #1a1a1a;
  opacity: 0.6;
  cursor: not-allowed;
}

.episode-item.locked:hover {
  background: #1a1a1a;
}

.lock-icon {
  display: block;
  font-size: 0.6rem;
  margin-top: 2px;
}

.intro-section {
  padding: 1.5rem 3%;
  border-bottom: 1px solid #2a2a2a;
  width: 100%;
  box-sizing: border-box;
}

.intro-section .section-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.intro-section p {
  color: #a0a0a0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.read-more {
  color: #ff2d55;
  cursor: pointer;
}

.category-tag {
  margin-top: 1rem;
}

.category-tag span {
  padding: 0.3rem 1rem;
  background: #2a2a2a;
  border-radius: 4px;
  color: #ff2d55;
  font-size: 0.85rem;
}

.recommend-section {
  padding: 1.5rem 3%;
  width: 100%;
  box-sizing: border-box;
}

.recommend-section .section-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.drama-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
}

.episode-item span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

.episode-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.episode-modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  max-height: 80vh;
  overflow: hidden;
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.modal-header h3 {
  color: #000;
  font-size: 1rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #666;
  cursor: pointer;
}

.modal-tabs {
  display: flex;
  padding: 1rem 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.modal-tab {
  color: #666;
  font-size: 0.9rem;
  cursor: pointer;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
}

.modal-tab.active {
  color: #ff2d55;
  border-color: #ff2d55;
}

.modal-episode-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.modal-episode-item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: background 0.2s ease;
}

.modal-episode-item:hover {
  background: #eee;
}

.modal-episode-item.active {
  background: #ff2d55;
  color: #fff;
}

.modal-episode-item.locked {
  background: #ccc;
  opacity: 0.6;
  cursor: not-allowed;
  color: #666;
}

.modal-episode-item.locked:hover {
  background: #ccc;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 3%;
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #2a2a2a;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ff2d55;
}

.page-header p {
  color: #a0a0a0;
  font-size: 1rem;
}

.page-content-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-section {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid #2a2a2a;
}

.page-section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #ff2d55;
}

.page-section h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.page-section p {
  color: #a0a0a0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.page-section ul {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.page-section li {
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.value-item {
  background: rgba(255, 45, 85, 0.1);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.value-item h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1rem;
}

.value-item p {
  font-size: 0.85rem;
}

.my-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem 3%;
}

.user-section {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ff2d55, #ff6b6b);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.user-avatar {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.avatar-icon {
  font-size: 2rem;
}

.user-info {
  flex: 1;
}

.login-btn {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.25rem 0;
  cursor: pointer;
}

.user-id {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.feedback-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
}

.wallet-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.wallet-title {
  font-size: 1rem;
  color: #333;
  margin: 0 0 1rem 0;
}

.wallet-content {
  display: flex;
  align-items: center;
}

.wallet-item {
  flex: 1;
  text-align: center;
}

.wallet-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.wallet-label {
  font-size: 0.85rem;
  color: #999;
}

.recharge-btn {
  background: linear-gradient(135deg, #ff2d55, #ff6b6b);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.vip-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fff8e1, #ffe0b2);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.vip-icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.vip-info {
  flex: 1;
}

.vip-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e65100;
  margin: 0 0 0.25rem 0;
}

.vip-desc {
  font-size: 0.85rem;
  color: #ef6c00;
  margin: 0;
}

.vip-activate-btn {
  background: #fff;
  border: 1px solid #ff9800;
  color: #ff9800;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}

.menu-section {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover {
  background: #f8f8f8;
}

.menu-icon {
  font-size: 1.2rem;
  margin-right: 0.75rem;
}

.menu-text {
  flex: 1;
  font-size: 0.95rem;
  color: #333;
}

.menu-arrow {
  color: #ccc;
  font-size: 1.2rem;
}

.my-page .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.my-page .footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}

.my-page .footer-links a:hover {
  color: #ff2d55;
}

.about-section {
  padding: 2rem 3%;
  max-width: 800px;
  margin: 0 auto;
}

.about-container {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2rem;
}

.about-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #2a2a2a;
}

.about-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.about-tagline {
  color: #ff2d55;
  font-size: 1rem;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-card {
  background: #2a2a2a;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.about-card:hover {
  transform: translateY(-3px);
  background: #333;
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.about-card p {
  color: #a0a0a0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  background: rgba(255, 45, 85, 0.1);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-item h3 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #fff;
}

.feature-item p {
  color: #a0a0a0;
  font-size: 0.8rem;
}

footer {
  background: #141414;
  padding: 2rem 3%;
  margin-top: 2rem;
  border-top: 1px solid #2a2a2a;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer-content p {
  color: #666;
  font-size: 0.85rem;
}

.footer-links {
  gap: 1.5rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .search-box {
    margin: 0 1rem;
    max-width: 250px;
  }

  .carousel-image {
    height: 180px;
  }

  .carousel-content h2 {
    font-size: 1.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .carousel-content p {
    font-size: 0.8rem;
  }

  .drama-card {
    width: 100%;
  }

  .drama-card .poster {
    height: 200px;
  }

  .promo-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
