/* ==========================================================================
   BANTU STREAM CONNECT — MOVIES BROWSE SCREEN
   ========================================================================== */
/* deep-black/soft-white/slate-grey/warm-gold/card-bg/card-border all come
   from shared-components.css (verified identical values) - only the page's
   own accent token lives here, now pointing at the real platform blue
   instead of a page-local bright cyan (matches Explore/Music/creator-channel). */
:root {
  --brand-cyan-core: var(--bantu-blue);
}

.movies-main { max-width: 1600px; margin: 0 auto; padding-bottom: 120px; }

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative; height: 75vh; min-height: 500px; max-height: 800px;
  display: flex; align-items: flex-end; overflow: hidden; margin-bottom: 32px;
}
.hero-video-container { position: absolute; inset: 0; z-index: 0; }
.hero-poster-image,
.hero-video-element,
.hero-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-poster-image { display: block; }
.hero-video-element,
.hero-video-frame { display: none; }
.hero-poster-image,
.hero-video-element { object-fit: cover; }
.hero-video-frame {
  border: 0;
  pointer-events: none;
  transform: scale(1.18);
  transform-origin: center;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--deep-black) 0%, rgba(10, 14, 18, 0.7) 40%, transparent 100%),
              linear-gradient(to right, rgba(10, 14, 18, 0.8) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; padding: 0 5% 68px; max-width: 760px; }
.hero-badges { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.badge-feature {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(29, 78, 216, 0.15); border: 1px solid rgba(29, 78, 216, 0.35);
  color: var(--brand-cyan-core); padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-premium {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--warm-gold); padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-leaving {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245, 158, 11, 0.15); border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--warm-gold); padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-title {
  font-family: 'Orbitron', sans-serif; font-size: 36px; font-weight: 700;
  color: var(--soft-white); margin: 0 0 12px; line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) { .hero-title { font-size: 48px; } }
.hero-meta { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--slate-grey); margin-bottom: 12px; flex-wrap: wrap; }
.hero-supporting-meta {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(248, 250, 252, 0.78);
  margin-bottom: 18px; flex-wrap: wrap;
}
.meta-divider { color: rgba(148, 163, 184, 0.4); }
.hero-description {
  font-size: 15px; line-height: 1.6; color: rgba(248, 250, 252, 0.85);
  margin: 0 0 28px; max-width: 640px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  background: var(--soft-white); color: var(--deep-black); border: none; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s ease;
}
.btn-primary.btn-glow {
  background: linear-gradient(135deg, var(--warm-gold), var(--bantu-blue));
  color: white; box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}
.btn-primary.btn-glow:hover { box-shadow: 0 6px 30px rgba(245, 158, 11, 0.5); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
  color: var(--soft-white); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s ease;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }

/* ===== FAVORITE BUTTON ===== */
.btn-favorite {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
  color: var(--soft-white); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s ease;
}
.btn-favorite:hover { background: rgba(255, 255, 255, 0.2); }
.btn-favorite .fav-label::after { content: ""; }
.btn-favorite.favorited {
  background: rgba(239, 68, 68, 0.15);
  border-color: #EF4444;
  color: #EF4444;
}
.btn-favorite.favorited .fa-heart { color: #EF4444; }
.btn-favorite.favorited .fav-label::after { content: "d"; }
.fav-pop { animation: favPop 0.4s ease; }

@keyframes favPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ===== FILTER CHIPS ===== */
.filter-section {
  padding: 0 5%; margin-bottom: 36px; position: sticky; top: 60px; z-index: 50;
  background: linear-gradient(to bottom, var(--deep-black) 60%, transparent 100%);
  padding-top: 16px; padding-bottom: 16px;
}
.filter-chips-container { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.filter-chips-container::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0; padding: 8px 18px; background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px;
  color: var(--slate-grey); font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 0.25s ease; white-space: nowrap;
}
.filter-chip:hover { background: rgba(255, 255, 255, 0.12); color: var(--soft-white); }
.filter-chip.active { background: var(--soft-white); color: var(--deep-black); border-color: var(--soft-white); font-weight: 600; }

/* ===== CONTENT ROWS ===== */
.content-row-section { padding: 0 5%; margin-bottom: 48px; }
.row-header { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.row-title { font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 600; color: var(--soft-white); margin: 0; display: flex; align-items: center; gap: 8px; }
.row-subtitle { font-size: 13px; color: var(--slate-grey); max-width: 420px; }
.row-scroll-container { position: relative; }
.row-scroll { display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 8px; }
.row-scroll::-webkit-scrollbar { display: none; }
/* Breakpoints match creator-channel.css's real .upload-grid tiers
   (768px/1600px), not invented 600/900/1200px ones. */
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 768px) { .content-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1600px) { .content-grid { grid-template-columns: repeat(4, 1fr); } }
.row-empty {
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--slate-grey);
  font-size: 14px;
  text-align: center;
}

/* ===== RETRY BUTTON ===== */
.row-retry {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px; color: var(--slate-grey); font-size: 13px;
  cursor: pointer; transition: all 0.2s ease;
}
.row-retry:hover { background: rgba(255, 255, 255, 0.12); color: var(--soft-white); }

/* ===== SKELETON LOADERS ===== */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skel-shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 37%, rgba(255,255,255,0.04) 63%);
  background-size: 800px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}
.skeleton-card, .skeleton-top10-card {
  border-radius: 8px;
  flex-shrink: 0;
}
.skeleton-card { 
  aspect-ratio: 16/9; 
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  animation: shimmer 1.6s ease-in-out infinite;
}
.skeleton-top10-card { 
  width: 160px; 
  height: 240px; 
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  animation: shimmer 1.6s ease-in-out infinite;
}
/* ===== CONTINUE WATCHING PROGRESS ===== */
.progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin: -4px 0 8px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--brand-cyan-core);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* ===== MZANSI HEAT CARDS ===== */
.top10-card { 
  flex-shrink: 0; width: 160px; position: relative; cursor: pointer; transition: transform 0.3s ease; 
}
.top10-card:hover { transform: scale(1.05); z-index: 10; }
.top10-thumb {
  position: relative; width: 160px; height: 240px; border-radius: 8px; overflow: hidden;
  background: var(--card-bg); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.top10-stamp {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--warm-gold);
  font-size: 11px;
  font-weight: 700;
  z-index: 3;
}
.top10-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.top10-card:hover .top10-thumb img { transform: scale(1.1); }
.top10-title { font-size: 12px; font-weight: 500; color: var(--soft-white); margin-top: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 0 4px; }
.top10-meta { font-size: 11px; color: var(--slate-grey); margin: 4px 4px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===== STANDARD 16:9 CARDS ===== */
.upload-card {
  cursor: pointer; transition: transform 0.2s ease; text-decoration: none; color: inherit; display: block;
  min-width: 0;
}
.upload-card:hover { transform: translateY(-4px); }
/* Continue Watching uses .row-scroll (flex, horizontal scroll) - without an
   explicit width, cards had no sizing basis at all. Same width creator-channel.css
   uses for its own .home-preview-row .upload-card. */
.row-scroll .upload-card { flex-shrink: 0; width: 200px; }
.upload-card__thumb {
  position: relative; background: #1a2033; border-radius: 6px; aspect-ratio: 16 / 9;
  margin-bottom: 6px; overflow: hidden; background-size: cover; background-position: center;
}
.upload-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.upload-card:hover .upload-card__thumb img { transform: scale(1.05); }

/* ===== HOVER PLAY ICON =====
   This class was referenced in the card markup (movies.js) but never
   actually styled anywhere movies.html loads - a pre-existing gap. Matches
   trending.css's real, working .media-hover-play pattern: centered overlay,
   brand-blue icon with a glow instead of a plain white play triangle. */
.media-hover-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.3); opacity: 0; transition: opacity 0.2s ease; z-index: 2;
}
.upload-card:hover .media-hover-play { opacity: 1; }
.media-hover-play i {
  font-size: 22px; color: var(--brand-cyan-core);
  text-shadow: 0 0 8px rgba(29, 78, 216, 0.9), 0 0 20px rgba(29, 78, 216, 0.6), 0 0 36px rgba(29, 78, 216, 0.35);
}

/* ===== BADGES - transparent glassmorphic, tinted by the badge's own color
   (not solid-filled), matching .badge-premium/.badge-feature/.top10-stamp
   which already use this pattern elsewhere on this page. Per-content-type
   tint (film=red, documentary=purple, etc.) is computed in movies.js since
   the color is dynamic per item. ===== */
.upload-card__badge {
  position: absolute; top: 6px; left: 6px; font-size: 10px; padding: 2px 8px;
  border-radius: 4px; font-weight: 600; z-index: 3;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.upload-card__badge.leaving-soon {
  background: rgba(245, 158, 11, 0.18); border: 1px solid rgba(245, 158, 11, 0.45); color: var(--warm-gold);
}
.upload-card__duration {
  position: absolute; bottom: 6px; right: 6px; font-size: 11px; color: white;
  background: rgba(0, 0, 0, 0.75); padding: 2px 6px; border-radius: 4px; font-weight: 500;
}
.upload-card__title {
  font-size: 13px; font-weight: 500; line-height: 1.4; margin: 0 0 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; color: var(--soft-white);
}
.upload-card__byline {
  font-size: 12px; color: rgba(248, 250, 252, 0.72); margin: 0 0 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.upload-card__meta { font-size: 11px; color: var(--slate-grey); display: flex; align-items: center; gap: 6px; }

/* Card preview video/frame styling moved to css/shared/preview-clips.css —
   shared with the home feed, which loads it separately. */

/* ===== KEYBOARD FOCUS STATES ===== */
.upload-card:focus-visible,
.top10-card:focus-visible {
  outline: 2px solid var(--brand-cyan-core);
  outline-offset: 3px;
  border-radius: 8px;
}

.episode-card:focus-visible {
  outline: 2px solid var(--brand-cyan-core);
  outline-offset: 2px;
  border-radius: 10px;
}

/* ===== EPISODE LEAVING BADGE ===== */
.ep-leaving-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.45);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--warm-gold);
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  z-index: 3;
}

/* ==========================================================================
   IN-PAGE DETAIL OVERLAY (Screen within a Screen)
   ========================================================================== */
.detail-overlay {
  position: fixed; inset: 0; z-index: 9998; background: rgba(5, 7, 12, 0.95);
  backdrop-filter: blur(20px); opacity: 0; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1); overflow-y: auto;
}
.detail-overlay.active { opacity: 1; pointer-events: auto; }

.detail-overlay-content {
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 20px;
  position: relative; animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.detail-close-btn {
  position: fixed; top: 20px; right: 20px; z-index: 9999;
  width: 44px; height: 44px; border-radius: 50%; background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2);
  color: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease; font-size: 18px;
}
.detail-close-btn:hover { background: rgba(239, 68, 68, 0.8); transform: rotate(90deg); }

.detail-loading, .detail-error {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 60vh; color: var(--slate-grey); text-align: center; gap: 16px;
}
.detail-loading .spinner {
  width: 40px; height: 40px; border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--brand-cyan-core); border-radius: 50%; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.detail-hero {
  position: relative; height: 60vh; min-height: 400px; border-radius: 20px;
  overflow: hidden; margin-bottom: 32px;
}
.detail-hero-video { position: absolute; inset: 0; }
.detail-hero-video img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 40px;
  background: linear-gradient(to top, var(--deep-black) 0%, transparent 100%);
}
.detail-title {
  font-family: 'Orbitron', sans-serif; font-size: 32px; font-weight: 700;
  color: var(--soft-white); margin: 0 0 12px;
}
.detail-meta { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--slate-grey); margin-bottom: 16px; flex-wrap: wrap; }
.detail-description { font-size: 15px; line-height: 1.6; color: rgba(248, 250, 252, 0.85); max-width: 700px; margin-bottom: 24px; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.detail-section { margin-bottom: 40px; }
.section-title {
  font-family: 'Orbitron', sans-serif; font-size: 18px; font-weight: 600;
  color: var(--soft-white); margin: 0 0 16px; display: flex; align-items: center; gap: 10px;
}

/* Episode Rail */
.episode-rail { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.episode-rail::-webkit-scrollbar { display: none; }
.episode-card {
  flex-shrink: 0; width: 220px; cursor: pointer; transition: transform 0.2s ease;
}
.episode-card:hover { transform: translateY(-4px); }
.ep-thumb {
  position: relative; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden;
  background: var(--card-bg); margin-bottom: 8px;
}
.ep-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ep-thumb.blurred img { filter: blur(8px); transition: filter 0.4s ease; }
.ep-thumb.blurred:hover img { filter: blur(0px); }
.ep-check, .ep-lock {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.6); font-size: 24px;
}
.ep-check { color: #10B981; }
.ep-lock { color: var(--warm-gold); }
.ep-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.4); opacity: 0; transition: opacity 0.2s ease; color: var(--brand-cyan-core); font-size: 12px; font-weight: 600;
}
.ep-thumb.blurred:hover .ep-play-overlay { opacity: 1; }
.ep-info { padding: 0 4px; }
.ep-number { font-size: 11px; color: var(--brand-cyan-core); font-weight: 600; text-transform: uppercase; }
.ep-info h4 { font-size: 13px; color: var(--soft-white); margin: 4px 0; font-weight: 500; }
.ep-duration, .ep-lock-text { font-size: 11px; color: var(--slate-grey); }

/* World Grid */
.world-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.world-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px;
  padding: 20px; cursor: pointer; transition: all 0.3s ease;
}
.world-card:hover { border-color: var(--brand-cyan-core); box-shadow: 0 0 20px rgba(29, 78, 216, 0.2); transform: translateY(-4px); }
.world-card-icon { font-size: 24px; color: var(--brand-cyan-core); margin-bottom: 12px; }
.world-card h4 { font-size: 15px; color: var(--soft-white); margin: 0 0 6px; font-weight: 600; }
.world-card p { font-size: 12px; color: var(--slate-grey); margin: 0; line-height: 1.4; }

/* Live Poll */
.pulse-card.live-poll {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 20px; max-width: 600px;
}
.poll-question { font-size: 15px; color: var(--soft-white); font-weight: 600; margin: 0 0 16px; }
.poll-option {
  display: flex; align-items: center; gap: 12px; padding: 10px;
  background: rgba(255,255,255,0.03); border-radius: 8px; margin-bottom: 8px; cursor: pointer; transition: background 0.2s;
}
.poll-option:hover { background: rgba(255,255,255,0.08); }
.poll-option span:first-child { font-size: 13px; color: var(--soft-white); flex: 1; }
.poll-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; margin: 0 12px; }
.poll-fill { height: 100%; background: var(--brand-cyan-core); border-radius: 3px; transition: width 0.5s ease; }
.poll-pct { font-size: 13px; color: var(--brand-cyan-core); font-weight: 600; min-width: 35px; text-align: right; }

/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero-section { height: 60vh; min-height: 400px; }
  .hero-content { padding: 0 4% 44px; }
  .hero-title { font-size: 28px; }
  .hero-description { font-size: 14px; -webkit-line-clamp: 2; }
  .btn-primary, .btn-secondary, .btn-favorite { padding: 10px 20px; font-size: 14px; }
  .filter-section { padding: 0 4%; top: 56px; }
  .content-row-section { padding: 0 4%; }
  .top10-card { width: 130px; }
  .top10-thumb { width: 130px; height: 195px; }
  .skeleton-top10-card { width: 130px; height: 195px; }
  .content-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .detail-hero { height: 50vh; min-height: 300px; }
  .detail-title { font-size: 24px; }
  .episode-card { width: 180px; }
  .badge-leaving { font-size: 9px; padding: 3px 8px; }
  /* Card text sizing matches creator-channel.css's real .upload-card__title/meta tiers */
  .upload-card__title { font-size: 11px; }
  .upload-card__meta { font-size: 10px; }
}

@media (max-width: 480px) {
  .detail-hero-content { padding: 20px; }
  .detail-title { font-size: 20px; }
  .detail-meta { font-size: 12px; }
  .detail-description { font-size: 13px; }
  .detail-actions { flex-direction: column; width: 100%; }
  .detail-actions .btn-primary,
  .detail-actions .btn-secondary,
  .detail-actions .btn-favorite { width: 100%; justify-content: center; }
  .episode-card { width: 160px; }
  .content-grid { gap: 8px; }
  .upload-card__title { font-size: 10px; }
  .row-scroll .upload-card { width: 160px; }
}
