/* =====================================================
   Shop.all — Worlds: Portal / Fashion / Cinema+
   ===================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.icon { width: 20px; height: 20px; flex-shrink: 0; }

/* =====================================================
   PORTAL — Choose Your World
   ===================================================== */
.portal-body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #05070f;
  color: #fff;
  overflow: hidden;
}

/* Background world image */
.portal-bg {
  position: fixed;
  inset: 0;
  background: url('../images/portal-bg.png') center / cover no-repeat;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 0;
}

body[data-world="games"] .portal-bg { transform: scale(1.14); transform-origin: 8% 50%; }
body[data-world="fashion"] .portal-bg { transform: scale(1.1); transform-origin: 50% 50%; }
body[data-world="cinema"] .portal-bg { transform: scale(1.14); transform-origin: 92% 50%; }

/* Per-world color veils (the chosen world takes over) */
.portal-veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
}

.veil-games { background: linear-gradient(90deg, rgba(18, 52, 128, 0.5) 0%, rgba(18, 52, 128, 0.18) 45%, transparent 75%); }
.veil-fashion { background: radial-gradient(ellipse 60% 90% at 50% 50%, rgba(244, 238, 226, 0.32), transparent 75%); }
.veil-cinema { background: linear-gradient(270deg, rgba(150, 24, 36, 0.5) 0%, rgba(150, 24, 36, 0.18) 45%, transparent 75%); }

body[data-world="games"] .veil-games,
body[data-world="fashion"] .veil-fashion,
body[data-world="cinema"] .veil-cinema { opacity: 1; }

/* Readability vignette */
.portal-shade {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 5, 12, 0.6) 0%, transparent 26%, transparent 72%, rgba(3, 5, 12, 0.65) 100%);
}

/* Sign In */
.portal-signin {
  position: fixed;
  top: 26px;
  inset-inline-end: 32px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 600;
  transition: background 300ms ease;
}

.portal-signin:hover { background: rgba(255, 255, 255, 0.2); }

.portal-signin .icon { width: 17px; height: 17px; }

/* Head */
.portal-head {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 52px;
}

.portal-logo {
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.portal-logo span { opacity: 0.95; }

.portal-tag {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-indent: 0.38em;
  color: rgba(255, 255, 255, 0.92);
}

.portal-tag i {
  display: inline-block;
  width: 42px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #c9a86a 30%, #c9a86a 70%, transparent);
}

/* Cards */
.portal-cards {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  padding: 34px 24px;
}

.portal-card {
  width: 380px;
  height: 520px;
  border-radius: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 40px 34px 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  overflow: hidden;
  transition: transform 500ms cubic-bezier(0.33, 1, 0.68, 1), box-shadow 500ms ease, opacity 500ms ease, border-color 500ms ease;
}

.portal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.card-games::before { background: linear-gradient(185deg, rgba(23, 58, 146, 0.38) 0%, rgba(8, 14, 34, 0.3) 100%); }
.card-fashion::before { background: linear-gradient(185deg, rgba(255, 255, 255, 0.55) 0%, rgba(238, 229, 212, 0.3) 100%); }
.card-cinema::before { background: linear-gradient(185deg, rgba(96, 16, 24, 0.42) 0%, rgba(22, 6, 9, 0.34) 100%); }

.card-games { border-color: rgba(96, 165, 250, 0.4); }
.card-fashion { border-color: rgba(255, 255, 255, 0.55); }
.card-cinema { border-color: rgba(248, 113, 113, 0.4); }

.portal-card:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.portal-cards:hover .portal-card:not(:hover) {
  opacity: 0.55;
  transform: scale(0.97);
}

.portal-card > * { position: relative; z-index: 1; }

/* World icon (neon) */
.world-icon {
  display: inline-flex;
  margin-bottom: 20px;
}

.world-icon svg {
  width: 86px;
  height: 86px;
}

.icon-games { color: #7fb3ff; filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.95)) drop-shadow(0 0 40px rgba(59, 130, 246, 0.5)); }
.icon-fashion { color: #e8c98a; filter: drop-shadow(0 0 14px rgba(214, 176, 106, 0.9)) drop-shadow(0 0 40px rgba(214, 176, 106, 0.45)); }
.icon-cinema { color: #ff5a5a; filter: drop-shadow(0 0 14px rgba(239, 68, 68, 0.95)) drop-shadow(0 0 40px rgba(239, 68, 68, 0.5)); }

/* Title */
.world-title {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.card-fashion .world-title { color: #33302a; text-shadow: none; }

/* Features */
.world-feats {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 22px 0 30px;
  justify-items: start;
}

.world-feats li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.card-fashion .world-feats li { color: #55503f; }

.world-feats .icon { width: 18px; height: 18px; }

.card-games .world-feats .icon { color: #8ab4ff; }
.card-fashion .world-feats .icon { color: #b08d4f; }
.card-cinema .world-feats .icon { color: #ff6b6b; }

/* Button */
.world-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 50px;
  width: 82%;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  transition: transform 300ms ease, box-shadow 300ms ease, filter 300ms ease;
}

.world-btn .icon { width: 18px; height: 18px; }

.btn-games {
  background: linear-gradient(90deg, #2563EB, #3B82F6);
  color: #fff;
  box-shadow: 0 12px 34px rgba(37, 99, 235, 0.5);
}

.btn-fashion {
  background: #f7f3ea;
  color: #33302a;
  box-shadow: 0 12px 34px rgba(120, 100, 60, 0.28);
}

.btn-cinema {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  color: #fff;
  box-shadow: 0 12px 34px rgba(220, 38, 38, 0.5);
}

.portal-card:hover .world-btn { filter: brightness(1.1); }

/* Foot line */
.portal-foot {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 6px 20px 40px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #d8dce6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.portal-foot span { color: #c9a86a; }

/* Zoom transition overlay */
.zoom-overlay {
  position: fixed;
  z-index: 999;
  border-radius: 28px;
  transition: all 620ms cubic-bezier(0.65, 0, 0.35, 1);
}

.zoom-overlay.full {
  left: 0 !important;
  top: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0;
}

/* Portal responsive */
@media (max-width: 1280px) {
  .portal-card { width: 330px; height: 480px; }
  .portal-cards { gap: 26px; }
  .portal-logo { font-size: 48px; }
}

@media (max-width: 1040px) {
  .portal-body { overflow: auto; height: auto; }
  .portal-cards { flex-direction: column; padding: 40px 24px; }
  .portal-card { width: min(380px, 92vw); height: 440px; }
  .portal-bg { transform: scale(1.1); }
}

/* =====================================================
   FASHION — light world
   ===================================================== */
.fashion-body {
  background: #faf8f4;
  color: #1d1a16;
}

.f-serif { font-family: 'Playfair Display', Georgia, serif; }

.f-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.f-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ece7de;
}

.f-nav-inner {
  height: 66px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.f-logo { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }

.f-links {
  display: flex;
  gap: 24px;
}

.f-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: #56514a;
  transition: color 150ms ease;
}

.f-links a:hover { color: #111; }

.f-nav-icons {
  margin-inline-start: auto;
  display: flex;
  gap: 6px;
}

.f-nav-icons button, .f-nav-icons a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #33302a;
  transition: background 150ms ease;
}

.f-nav-icons button:hover, .f-nav-icons a:hover { background: #efeae1; }

.f-nav-icons .icon { width: 19px; height: 19px; }

/* Hero */
.f-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: linear-gradient(115deg, #f6f1e8 0%, #faf7f1 55%, #f1e9db 100%);
}

.f-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 24px 60px max(24px, calc((100vw - 1180px) / 2 + 24px));
}

.f-kicker {
  font-size: 26px;
  font-weight: 500;
  color: #2a2620;
}

.f-title {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: 0.015em;
  margin-top: 6px;
  color: #17140f;
}

.f-desc {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #6d675c;
}

.f-btn-dark {
  margin-top: 28px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 24px;
  border-radius: 10px;
  background: #17140f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 150ms ease, transform 150ms ease;
}

.f-btn-dark:hover { background: #2c271f; transform: translateY(-1px); }

.f-btn-dark .icon { width: 17px; height: 17px; }

.f-hero-art {
  position: relative;
  background:
    url('https://images.unsplash.com/photo-1539109136881-3be0616acf4b?auto=format&fit=crop&w=1100&q=70') center 20% / cover no-repeat,
    radial-gradient(ellipse 55% 65% at 50% 40%, rgba(255, 255, 255, 0.9), transparent 70%),
    radial-gradient(ellipse 70% 80% at 65% 60%, #e9decb, transparent 75%),
    linear-gradient(160deg, #f2ead9 0%, #e7dcc6 100%);
}

.f-hero-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f7f3ea 0%, transparent 22%);
}

/* Category cards */
.f-cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.f-cat {
  background: #fff;
  border: 1px solid #ece7de;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.f-cat:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(60, 50, 30, 0.1); }

.f-cat-img {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b9ad97;
  background: linear-gradient(160deg, #f5f0e7, #ece4d4);
}

.f-cat-img .icon { width: 40px; height: 40px; }

/* Real photography (Unsplash, free license) — gradient stays as fallback */
.f-cat-img, .f-drop-img { background-size: cover; background-position: center; background-repeat: no-repeat; }

.f-cat-img[class*=" ci-"] .icon, .f-drop-img[class*=" di-"] .icon { display: none; }

.ci-women  { background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=600&q=70'); }
.ci-men    { background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=600&q=70'); }
.ci-acc    { background-image: url('https://images.unsplash.com/photo-1553062407-98eeb64c6a62?auto=format&fit=crop&w=600&q=70'); }
.ci-shoes  { background-image: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=600&q=70'); }
.ci-watch  { background-image: url('https://images.unsplash.com/photo-1524592094714-0f0654e20314?auto=format&fit=crop&w=600&q=70'); }

.di-coat   { background-image: url('https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=600&q=70'); }
.di-shirt  { background-image: url('https://images.unsplash.com/photo-1596755094514-f87e34085b2c?auto=format&fit=crop&w=600&q=70'); }
.di-bag    { background-image: url('https://images.unsplash.com/photo-1584917865442-de89df76afd3?auto=format&fit=crop&w=600&q=70'); }
.di-sneak  { background-image: url('https://images.unsplash.com/photo-1549298916-b41d501d3772?auto=format&fit=crop&w=600&q=70'); }
.di-watch2 { background-image: url('https://images.unsplash.com/photo-1523275335684-37898b6baf30?auto=format&fit=crop&w=600&q=70'); }

.f-cat-body { padding: 12px 14px 14px; }

.f-cat-body b { display: block; font-size: 14px; font-weight: 600; }

.f-cat-body span { display: block; margin-top: 3px; font-size: 12px; color: #948c7d; }

/* Drops */
.f-section { margin-top: 48px; }

.f-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.f-section-head h2 { font-size: 20px; font-weight: 700; }

.f-view-all { font-size: 13px; font-weight: 600; color: #56514a; }

.f-view-all:hover { color: #111; }

.f-drops {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.f-drop {
  background: #fff;
  border: 1px solid #ece7de;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.f-drop:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(60, 50, 30, 0.1); }

.f-drop-img {
  position: relative;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a89d88;
  background: linear-gradient(165deg, #f6f2ea, #ede5d6);
}

.f-drop-img .icon { width: 52px; height: 52px; stroke-width: 1.4; }

.f-soon {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: #17140f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 999px;
}

.f-drop-body { padding: 12px 14px 14px; }

.f-drop-body b { display: block; font-size: 14px; font-weight: 600; }

.f-drop-body span { display: block; margin-top: 3px; font-size: 12.5px; color: #948c7d; }

/* Newsletter */
.f-news {
  margin-top: 48px;
  background: #f1ece2;
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.f-news-ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #33302a;
  flex-shrink: 0;
}

.f-news-txt b { display: block; font-size: 15px; font-weight: 700; }

.f-news-txt span { display: block; margin-top: 2px; font-size: 13px; color: #6d675c; }

.f-news form {
  margin-inline-start: auto;
  display: flex;
  gap: 10px;
}

.f-news input {
  width: 250px;
  height: 44px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid #ddd5c6;
  background: #fff;
  font-family: inherit;
  font-size: 13.5px;
  outline: none;
}

.f-news input:focus { border-color: #17140f; }

.f-news button {
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  background: #17140f;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 150ms ease;
}

.f-news button:hover { background: #2c271f; }

/* Fashion footer */
.f-footer {
  margin-top: 56px;
  background: #fff;
  border-top: 1px solid #ece7de;
  padding: 48px 0 0;
}

.f-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 38px;
}

.f-footer h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; }

.f-footer-col a {
  display: block;
  font-size: 13px;
  color: #6d675c;
  margin-bottom: 10px;
}

.f-footer-col a:hover { color: #111; }

.f-socials { display: flex; gap: 10px; }

.f-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2dccf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #55503f;
  transition: all 150ms ease;
}

.f-socials a:hover { background: #17140f; border-color: #17140f; color: #fff; }

.f-socials .icon { width: 16px; height: 16px; }

.f-footer-bottom {
  border-top: 1px solid #ece7de;
  padding: 18px 0;
  font-size: 12px;
  color: #9a927f;
}

/* Fashion responsive */
@media (max-width: 1000px) {
  .f-links { display: none; }
  .f-hero { grid-template-columns: 1fr; }
  .f-hero-art { min-height: 220px; }
  .f-cats, .f-drops { grid-template-columns: repeat(2, 1fr); }
  .f-footer-grid { grid-template-columns: 1fr 1fr; }
  .f-news form { width: 100%; }
  .f-news input { flex: 1; width: auto; }
  .f-title { font-size: 40px; }
}

/* =====================================================
   CINEMA+ — dark red world
   ===================================================== */
.cinema-body {
  background: #0b0b0d;
  color: #f5f5f7;
}

.c-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.c-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.c-nav-inner {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.c-logo { font-size: 19px; font-weight: 800; }

.c-links { display: flex; gap: 24px; }

.c-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: #a7a7af;
  transition: color 150ms ease;
}

.c-links a:hover { color: #fff; }

.c-links a.active { color: #e0414d; }

.c-nav-right {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.c-nav-right .icon-round {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #d5d5da;
  transition: background 150ms ease;
}

.c-nav-right .icon-round:hover { background: rgba(255, 255, 255, 0.08); }

.c-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(224, 65, 77, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e0414d;
}

.c-avatar .icon { width: 16px; height: 16px; }

.c-sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: #c11723;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: background 150ms ease;
}

.c-sub-btn:hover { background: #e02531; }

.c-sub-btn .icon { width: 15px; height: 15px; }

/* Hero */
.c-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 45% 55% at 78% 30%, rgba(196, 44, 56, 0.4), transparent 60%),
    radial-gradient(ellipse 60% 45% at 62% 75%, rgba(120, 26, 34, 0.35), transparent 65%),
    linear-gradient(200deg, #1c0f13 0%, #120c0f 45%, #0b0b0d 100%);
}

.c-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 22%;
  opacity: 0.55;
}

.c-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 55%, rgba(8, 8, 10, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 8, 10, 0.9) 0%, rgba(8, 8, 10, 0.45) 45%, transparent 72%),
    radial-gradient(ellipse 50% 60% at 78% 35%, rgba(196, 44, 56, 0.28), transparent 65%);
}

.c-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 70px 24px 70px max(24px, calc((100vw - 1220px) / 2 + 24px));
}

/* Editable from the control panel; hidden until it has text. */
.c-hero-kicker {
  display: block;
  margin-bottom: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff6b73;
}
.c-hero-kicker:empty { display: none; }

.c-tvplus {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 30px;
  font-weight: 700;
}

.c-tvplus .icon { width: 27px; height: 27px; }

.c-hero h1 {
  margin-top: 20px;
  font-size: 41px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.c-hero p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: #b9b9c1;
  max-width: 420px;
}

.c-btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 48px;
  padding: 0 28px;
  border-radius: 10px;
  background: #d21f2c;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  transition: background 150ms ease, transform 150ms ease;
}

.c-btn-red:hover { background: #e6303c; transform: translateY(-1px); }

.c-hero .c-btn-red { margin-top: 26px; }

.c-hero-note {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  color: #8a8a93;
}

/* Feature strip */
.c-feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  overflow: hidden;
  margin-top: -46px;
  position: relative;
  z-index: 2;
}

.c-feat {
  background: #121214;
  padding: 20px 22px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.c-feat .icon { width: 20px; height: 20px; color: #e0414d; margin-top: 2px; }

.c-feat b { display: block; font-size: 13.5px; font-weight: 700; }

.c-feat span { display: block; margin-top: 3px; font-size: 12px; color: #9a9aa2; }

/* Rows */
.c-row { margin-top: 48px; }

.c-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.c-row-head h2 { font-size: 18px; font-weight: 700; }

.c-view-all { font-size: 13px; font-weight: 600; color: #e0414d; }

.c-view-all:hover { color: #ff5a66; }

/* Featured cards (landscape) */
.c-featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.c-show {
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.c-show:hover { transform: scale(1.04); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55); }

.c-show-art {
  height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-align: center;
  padding: 10px;
}

.c-show-title { font-size: 17px; font-weight: 800; letter-spacing: 0.04em; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6); }

.c-show-sub { font-size: 7.5px; font-weight: 700; letter-spacing: 0.32em; text-indent: 0.32em; opacity: 0.9; }

.c-show-genre { padding: 9px 12px; font-size: 11.5px; color: #9a9aa2; }

.art-monarch { background: radial-gradient(circle at 45% 40%, rgba(74, 172, 106, 0.55), transparent 60%), linear-gradient(160deg, #0e1f16, #12291c); }
.art-ted { background: radial-gradient(circle at 50% 100%, rgba(198, 40, 48, 0.5), transparent 55%), linear-gradient(160deg, #14459c, #1b57bd); }
.art-foundation { background: radial-gradient(circle at 55% 30%, rgba(140, 190, 214, 0.4), transparent 55%), linear-gradient(160deg, #14252d, #1f3a47); }
.art-foundation .c-show-title { letter-spacing: 0.3em; text-indent: 0.3em; font-size: 13px; }
.art-coda { background: radial-gradient(circle at 60% 35%, rgba(120, 180, 214, 0.4), transparent 55%), linear-gradient(160deg, #123a52, #1d5f86); }
.art-coda .c-show-title { font-size: 21px; }

/* Official artwork loaded from Apple's iTunes API */
.c-show-art, .c-poster-art { background-size: cover; background-position: center; background-repeat: no-repeat; }

.c-show-art.has-img .c-show-title,
.c-show-art.has-img .c-show-sub { visibility: hidden; }

.c-poster-art.has-img { color: transparent; text-shadow: none; }

/* Dots */
.c-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.c-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.c-dots i.on { background: #e0414d; }

/* New releases (posters) */
.c-strip-wrap { position: relative; }

.c-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.c-strip::-webkit-scrollbar { display: none; }

.c-poster { flex: 0 0 calc(20% - 11.2px); min-width: 150px; }

.c-poster-art {
  height: 208px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  font-weight: 800;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.c-poster:hover .c-poster-art { transform: scale(1.04); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55); }

.c-poster-genre { margin-top: 8px; font-size: 11.5px; color: #9a9aa2; }

.pa-kfm { background: radial-gradient(circle at 50% 30%, rgba(170, 60, 40, 0.45), transparent 60%), linear-gradient(170deg, #1c1210, #35150d); font-size: 12px; line-height: 1.5; letter-spacing: 0.06em; }
.pa-morning { background: linear-gradient(170deg, #131316, #1d1d22); color: #f2c548; font-size: 15px; line-height: 1.35; }
.pa-masters { background: radial-gradient(circle at 50% 25%, rgba(160, 190, 220, 0.35), transparent 55%), linear-gradient(170deg, #2a3a4c, #46586b); font-size: 14px; line-height: 1.4; letter-spacing: 0.05em; }
.pa-lessons { background: linear-gradient(170deg, #ded0b4, #cdbb98); color: #4a3c28; font-size: 13px; line-height: 1.45; letter-spacing: 0.04em; }
.pa-silo { background: radial-gradient(circle at 50% 70%, rgba(214, 150, 60, 0.4), transparent 60%), linear-gradient(170deg, #17130e, #2a2014); font-size: 20px; letter-spacing: 0.42em; text-indent: 0.42em; }
.pa-extra { background: radial-gradient(circle at 50% 30%, rgba(70, 150, 190, 0.4), transparent 60%), linear-gradient(170deg, #10181d, #1c2f3a); font-size: 13px; line-height: 1.5; letter-spacing: 0.05em; }

.c-strip-next {
  position: absolute;
  top: 84px;
  inset-inline-end: -6px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(18, 18, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 150ms ease;
}

.c-strip-next:hover { background: #d21f2c; }

/* CTA banner */
.c-cta {
  margin-top: 52px;
  border-radius: 16px;
  padding: 30px 34px;
  background:
    radial-gradient(ellipse 50% 90% at 85% 50%, rgba(200, 40, 52, 0.35), transparent 70%),
    linear-gradient(100deg, #26090d 0%, #451016 55%, #6b141d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.c-cta-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 30px;
  font-weight: 700;
  flex-shrink: 0;
}

.c-cta-brand .icon { width: 27px; height: 27px; }

.c-cta-text { font-size: 16px; font-weight: 700; line-height: 1.5; }

.c-cta-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-inline-start: auto;
}

.c-cta-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #f0d9d9;
}

.c-cta-list .icon { width: 15px; height: 15px; color: #ff5a66; }

.c-cta-action { text-align: center; flex-shrink: 0; }

.c-cta-action span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #d9a3a8;
}

/* Cinema footer */
.c-footer {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
}

.c-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.c-footer-inner p { font-size: 12.5px; color: #8a8a93; }

.c-footer-links { display: flex; gap: 20px; }

.c-footer-links a { font-size: 13px; color: #9a9aa2; }

.c-footer-links a:hover { color: #fff; }

/* Cinema responsive */
@media (max-width: 1000px) {
  .c-links { display: none; }
  .c-feats { grid-template-columns: repeat(2, 1fr); margin-top: 24px; }
  .c-featured { grid-template-columns: repeat(2, 1fr); }
  .c-poster { flex-basis: calc(33.4% - 10px); }
  .c-hero h1 { font-size: 32px; }
  .c-cta-list { margin-inline-start: 0; }
}

@media (max-width: 620px) {
  .c-featured { grid-template-columns: 1fr; }
  .c-poster { flex-basis: calc(50% - 7px); }
  .f-cats, .f-drops { grid-template-columns: 1fr; }
}
