/* src/client/styles.css */
:root, [data-bs-theme="dark"] {
  --bs-body-bg: #0a0a0f;
  --bs-body-color: #e8e8ed;
  --bs-body-color-rgb: 232, 232, 237;
  --bs-secondary-color: #8b8b9e;
  --bs-tertiary-color: #5a5a6e;
  --bs-card-bg: #15151e;
  --bs-card-border-color: #ffffff0f;
  --bs-card-cap-bg: #15151e;
  --bs-modal-bg: #15151e;
  --bs-modal-border-color: #ffffff0f;
  --bs-modal-header-border-color: #ffffff0f;
  --bs-border-color: #ffffff0f;
  --bs-border-color-translucent: #ffffff0f;
  --bs-link-color: #e4a048;
  --bs-link-hover-color: #f0b45c;
  --bs-link-color-rgb: 228, 160, 72;
  --bs-warning: #e4a048;
  --bs-warning-rgb: 228, 160, 72;
  --bs-emphasis-color: #e8e8ed;
  --bs-emphasis-color-rgb: 232, 232, 237;
}

.btn-warning {
  --bs-btn-color: #0a0a0f;
  --bs-btn-bg: #e4a048;
  --bs-btn-border-color: #e4a048;
  --bs-btn-hover-color: #0a0a0f;
  --bs-btn-hover-bg: #f0b45c;
  --bs-btn-hover-border-color: #f0b45c;
  --bs-btn-active-color: #0a0a0f;
  --bs-btn-active-bg: #d4904a;
  --bs-btn-active-border-color: #d4904a;
  --bs-btn-focus-shadow-rgb: 228, 160, 72;
}

.btn-outline-warning {
  --bs-btn-color: #e4a048;
  --bs-btn-border-color: #e4a048;
  --bs-btn-hover-color: #0a0a0f;
  --bs-btn-hover-bg: #e4a048;
  --bs-btn-hover-border-color: #e4a048;
  --bs-btn-active-color: #0a0a0f;
  --bs-btn-active-bg: #e4a048;
  --bs-btn-active-border-color: #e4a048;
  --bs-btn-focus-shadow-rgb: 228, 160, 72;
}

:root {
  --bg: #0a0a0f;
  --surface: #15151e;
  --surface-hover: #1c1c28;
  --surface-border: #ffffff0f;
  --text: #e8e8ed;
  --text-muted: #8b8b9e;
  --text-dim: #5a5a6e;
  --accent: #e4a048;
  --accent-hover: #f0b45c;
  --accent-glow: #e4a04826;
  --rose: #d45d79;
}

*, *:before, *:after {
  box-sizing: border-box;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, SF Pro Display, SF Pro Text, Segoe UI, Roboto, sans-serif;
}

body:before {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  inset: 0;
}

.page-title {
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--accent), var(--rose));
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 20px;
  font-weight: 700;
}

.navbar-header {
  position: fixed;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-top: 1px solid var(--surface-border);
  background: #0a0a0feb;
  border-bottom: none;
  padding: 0;
  transition: box-shadow .3s;
  bottom: 0;
  left: 0;
  right: 0;
}

.nav-inner {
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items:  center;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.page-title {
  display: none;
}

.nav-controls {
  display: flex;
  align-items:  center;
  gap: 12px;
}

.nav-btn-circle {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  cursor: pointer;
  color: var(--text-muted);
  background: #ffffff14;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 44px;
  height: 44px;
  padding: 0;
  transition: background .2s, color .2s, transform .15s;
}

.nav-btn-circle:hover {
  color: var(--text);
  background: #ffffff24;
}

.nav-btn-circle:active {
  transform: scale(.92) !important;
}

.nav-btn-circle.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.nav-btn-circle.active:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--bg);
}

.today-btn-icon {
  position: relative;
}

.today-date-num {
  position: absolute;
  color: currentColor;
  pointer-events: none;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-btn-pill {
  display: flex;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  background: #ffffff14;
  border: 1px solid #ffffff1a;
  border-radius: 22px;
  align-items:  center;
  gap: 0;
  height: 44px;
  padding: 0 4px;
}

.pill-arrow {
  display: flex;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items:  center;
  width: 34px;
  height: 34px;
  padding: 0;
  transition: background .15s, color .15s;
}

.pill-arrow:hover {
  color: var(--text);
  background: #ffffff14;
}

.pill-arrow:active {
  transform: scale(.9) !important;
}

.pill-month-text {
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  background: none;
  border: none;
  width: 140px;
  padding: 0 8px;
  transition: color .15s;
  font-size: 15px;
  font-weight: 600;
}

.pill-month-text:hover {
  color: var(--accent);
}

.month-dropdown {
  display: none;
}

.month-overlay {
  display: none;
  position: fixed;
  z-index: 200;
  inset: 0;
}

.month-overlay.open {
  display: block;
}

.month-overlay-backdrop {
  position: absolute;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fade-in .2s ease;
  background: #0009;
  inset: 0;
}

.month-overlay-panel {
  position: absolute;
  background: var(--surface);
  padding: 24px 20px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  animation: slide-up .3s cubic-bezier(.32, .72, 0, 1) forwards;
  border-radius: 20px 20px 0 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.month-overlay-header {
  display: flex;
  color: var(--text);
  text-align: center;
  justify-content: center;
  align-items:  center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.year-arrow {
  display: flex;
  color: var(--text-muted);
  cursor: pointer;
  background: #ffffff14;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 36px;
  height: 36px;
  padding: 0;
  transition: background .15s, color .15s;
}

.year-arrow:hover {
  color: var(--text);
  background: #ffffff24;
}

.year-arrow:active {
  transform: scale(.9);
}

.month-overlay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.month-overlay-grid button {
  color: var(--text-muted);
  cursor: pointer;
  background: #ffffff0f;
  border: 1px solid #0000;
  border-radius: 12px;
  padding: 14px 8px;
  transition: background .15s, color .15s, border-color .15s;
  font-size: 16px;
  font-weight: 500;
}

.month-overlay-grid button:hover {
  color: var(--text);
  background: #ffffff1a;
}

.month-overlay-grid button:active {
  transform: scale(.95) !important;
}

.month-overlay-grid button.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  font-weight: 700;
}

.month-overlay-grid button.current {
  color: var(--accent);
  border-color: #e4a0484d;
  font-weight: 600;
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.main-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 16px 12px 100px;
}

.featured {
  margin-bottom: 36px;
}

.featured-heading {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  position: relative;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
}

.featured-heading:before {
  content: "";
  position: absolute;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
  opacity: .6;
  pointer-events: none;
  z-index: -1;
  width: 300px;
  height: 80px;
  top: -20px;
  left: -40px;
}

.featured-grid {
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  gap: 12px;
  display: grid !important;
}

.featured-grid .col {
  flex: none;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0;
}

@media (width >= 768px) {
  .featured-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width >= 1200px) {
  .featured-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.featured-card {
  cursor: pointer;
  color: inherit;
  display: block;
  transition: transform .3s ease-out;
  text-decoration: none !important;
}

.featured-card:hover {
  color: inherit;
  transform: translateY(-6px)scale(1.02);
}

.featured-poster {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  transition: box-shadow .3s;
  box-shadow: 0 4px 12px #0000004d;
}

.featured-card:hover .featured-poster {
  box-shadow: 0 4px 12px #0006, 0 12px 40px #0009, 0 0 30px var(--accent-glow), 0 20px 60px #e4a04814;
}

.featured-info {
  padding: 10px 2px 0;
}

.featured-title {
  display: block;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 600;
}

.featured-date {
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
  font-size: 12px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  background: #ffffff0a;
  border-radius: 12px;
  gap: 1px;
}

.day-header {
  background: var(--surface);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .025em;
  color: var(--text-muted);
  padding: 6px 4px;
  font-size: 10px;
  font-weight: 700;
}

.day-cell {
  position: relative;
  animation: stagger-in .3s ease backwards;
  background: #0f0f16cc;
  min-height: 44px;
  padding: 4px;
  transition: background .15s;
}

.day-cell.has-movies {
  background: var(--surface);
  border-left: 2px solid var(--accent);
  min-height: 85px;
}

.day-cell.empty {
  background: #0a0a0f99;
}

.day-cell:hover:not(.empty) {
  background: var(--surface-hover);
}

.day-number {
  color: var(--text-dim);
  display: inline-flex;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 22px;
  height: 22px;
  font-size: 11px;
  font-weight: 500;
}

.day-number.today-number {
  background: var(--accent);
  color: var(--bg);
  animation: pulse-glow 2s ease-in-out infinite;
  font-weight: 700;
}

.day-movies {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.mini-poster {
  object-fit: cover;
  cursor: pointer;
  border-radius: 4px;
  width: 32px;
  height: 48px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px #0000004d;
}

.mini-poster:hover {
  z-index: 10;
  position: relative;
  box-shadow: 0 4px 20px #00000080, 0 0 20px var(--accent-glow);
  transform: scale(1.15);
}

.more-badge {
  color: var(--text-muted);
  display: flex;
  align-items:  center;
  padding: 0 2px;
  font-size: 9px;
  font-weight: 600;
}

.timeline-wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.timeline-group-header {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  border-bottom: 1px solid var(--surface-border);
  margin-bottom: 16px;
  padding-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.timeline-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-genres {
  color: var(--accent);
  letter-spacing: .02em;
  font-size: 12px;
  font-weight: 500;
}

.card-actions {
  display: flex;
  align-items:  center;
  gap: 12px;
  margin-top: 12px;
}

.card-actions .tickets-btn {
  text-align: center;
}

.tmdb-link {
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
  font-size: 13px;
  font-weight: 600;
}

.tmdb-link:hover {
  color: var(--accent);
}

.movie-card {
  padding: 12px;
  transition: transform .25s, box-shadow .25s, background .25s;
  border: 1px solid var(--surface-border) !important;
  background: var(--surface) !important;
  border-radius: 16px !important;
}

.movie-card:hover {
  transform: translateY(-2px);
  background: var(--surface-hover) !important;
  box-shadow: 0 2px 8px #0003, 0 8px 24px #0000004d, 0 16px 48px #00000026 !important;
}

.card-top {
  display: flex;
  align-items:  flex-start;
  gap: 12px;
}

.card-poster {
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  width: 85px;
  height: 128px;
  box-shadow: 0 4px 12px #0000004d;
}

.card-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
  min-width: 0;
  padding: 4px 0;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.card-title {
  letter-spacing: -.025em;
  color: var(--text) !important;
  margin-bottom: 0 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.card-rating {
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
}

.card-meta {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.375;
}

.card-overview {
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.625;
}

.card-overview-inline {
  display: none;
}

.card-overview-block {
  display: block;
}

.tickets-btn {
  box-shadow: none !important;
}

.movie-modal-content {
  box-shadow: 0 8px 24px #0000004d, 0 24px 80px #00000080, 0 0 40px var(--accent-glow), 0 40px 100px #e4a0481a;
  background: var(--surface) !important;
  border: 1px solid var(--surface-border) !important;
  border-radius: 24px !important;
}

.modal-backdrop {
  --bs-backdrop-bg: #0009;
  --bs-backdrop-opacity: 1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-backdrop.show {
  opacity: 1;
}

.popover-inner {
  display: flex;
  align-items:  flex-start;
  gap: 16px;
}

.popover-left {
  flex-shrink: 0;
  width: 140px;
}

.popover-poster {
  object-fit: cover;
  border-radius: 12px;
  width: 140px;
  height: 210px;
}

.popover-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.popover-rating {
  color: var(--accent);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}

.popover-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
  min-width: 0;
  padding-right: 24px;
}

.popover-title {
  letter-spacing: -.025em;
  font-size: 18px;
  font-weight: 700;
}

.popover-meta {
  color: var(--text-muted);
  font-size: 13px;
}

.popover-overview {
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  overflow: hidden;
  -webkit-box-orient: vertical;
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.empty-state {
  text-align: center;
  padding: 80px 0;
}

.empty-icon {
  color: var(--text-dim);
  animation: fade-in .5s ease;
  margin: 0 auto 24px;
}

.empty-title {
  color: var(--text-muted);
  font-size: 18px;
}

.empty-subtitle {
  color: var(--text-dim);
  margin-top: 8px;
  font-size: 14px;
}

.error-banner {
  text-align: center;
  padding: 16px 24px;
  font-size: 14px;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

.error-banner a {
  color: inherit;
}

.tmdb-footer {
  border-top: 1px solid var(--surface-border);
  background: #0a0a0f99;
  margin-top: 48px;
}

.tmdb-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 24px;
}

.tmdb-footer p {
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 0;
  font-size: 12px;
}

.tmdb-footer a {
  color: var(--accent);
  text-decoration: none;
  transition: color .15s;
}

.tmdb-footer a:hover {
  color: var(--accent-hover);
}

#calendar-view, #featured-view {
  display: block;
}

#timeline-view, body.view-timeline #calendar-view, body.view-timeline #featured-view {
  display: none;
}

body.view-timeline #timeline-view {
  display: block;
}

body.loading .main-content {
  opacity: .4;
  pointer-events: none;
  transition: opacity .15s;
}

.skeleton, .skeleton-featured, .skeleton-poster, .skeleton-text, .skeleton-text-sm {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(90deg, #ffffff0a, #ffffff14, #ffffff0a) 0 0 / 1000px 100%;
}

.skeleton-featured {
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  width: 100%;
}

.skeleton-poster {
  border-radius: 12px;
  flex-shrink: 0;
  width: 100px;
  height: 150px;
}

.skeleton-text {
  border-radius: 4px;
  height: 16px;
}

.skeleton-text-sm {
  border-radius: 4px;
  height: 12px;
}

.skel-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.skel-card {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  gap: 16px;
  padding: 16px;
}

.skel-card-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.skel-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skel-w32 {
  width: 128px;
}

.skel-w16 {
  width: 64px;
}

.skel-w75 {
  width: 75%;
}

.skel-w50 {
  width: 50%;
}

.skel-w66 {
  width: 66%;
}

.skel-wfull {
  width: 100%;
}

.skel-mt {
  margin-top: 4px;
}

.fade-out {
  animation: fade-out .2s ease forwards;
}

.fade-in-content {
  animation: fade-in-up .4s ease;
}

button:active, .featured-card:active, .mini-poster:active {
  transform: scale(.95) !important;
}

.movie-card:active {
  transform: translateY(-.5px)scale(.98) !important;
}

button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.mini-poster:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.featured-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button:focus:not(:focus-visible) {
  outline: none;
}

a:focus:not(:focus-visible) {
  outline: none;
}

@keyframes dropdown-in {
  from {
    opacity: 0;
    transform: translateX(-50%)translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes scale-in-center {
  from {
    opacity: 0;
    transform: translate(-50%, -50%)scale(.95);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes scale-out {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: scale(.95);
  }
}

@keyframes stagger-in {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes shimmer {
  from {
    background-position: -1000px 0;
  }

  to {
    background-position: 1000px 0;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 var(--accent-glow), 0 0 8px var(--accent-glow);
  }

  50% {
    box-shadow: 0 0 0 6px transparent, 0 0 16px var(--accent-glow);
  }
}

@media (width >= 641px) {
  .navbar-header {
    position: sticky;
    border-top: none;
    border-bottom: 1px solid var(--surface-border);
    background: #0a0a0fd9;
    top: 0;
    bottom: auto;
  }

  .navbar-header.scrolled {
    box-shadow: 0 4px 16px #0000004d, 0 8px 32px #0003;
  }

  .nav-inner {
    justify-content: space-between;
    padding: 12px 24px;
  }

  .page-title {
    display: block;
    font-size: 22px;
  }

  .main-content {
    padding: 28px 24px;
  }

  .month-overlay-panel {
    position: absolute;
    animation: scale-in-center .2s ease forwards;
    border-radius: 20px;
    width: 90%;
    max-width: 360px;
    padding-bottom: 24px;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
  }

  .timeline-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .featured-grid {
    gap: 16px;
  }

  .calendar-grid {
    border-radius: 16px;
  }

  .day-header {
    padding: 10px 8px;
    font-size: 11px;
  }

  .day-cell {
    min-height: 56px;
    padding: 8px;
  }

  .day-cell.has-movies {
    min-height: 140px;
  }

  .mini-poster {
    border-radius: 6px;
    width: 48px;
    height: 72px;
  }

  .day-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .day-movies {
    gap: 6px;
    margin-top: 6px;
  }

  .more-badge {
    padding: 0 4px;
    font-size: 11px;
  }

  .movie-card {
    padding: 16px;
  }

  .card-top {
    gap: 16px;
  }

  .card-poster {
    border-radius: 12px;
    width: 100px;
    height: 150px;
  }

  .card-details {
    gap: 6px;
  }

  .card-title {
    font-size: 17px !important;
  }

  .card-meta {
    font-size: 14px;
  }

  .card-overview {
    color: var(--text-muted);
    font-size: 14px;
  }

  .card-genres {
    font-size: 13px;
  }

  .tmdb-link {
    font-size: 14px;
  }

  .card-overview-inline {
    display: block;
  }

  .card-overview-block {
    display: none;
  }
}
