:root {
  --bg: #0d0d0d;
  --bg-deep: #080808;
  --surface: #151515;
  --surface-2: #1f1f1f;
  --text: #f2f2f2;
  --muted: #a6a6a6;
  --red: #ec1313;
  --orange: #ff6a1a;
  --border: #2e2e2e;
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(13,13,13,.94), rgba(13,13,13,.58), transparent);
  transition: .3s ease;
}
.site-header.scrolled { background: rgba(13,13,13,.94); backdrop-filter: blur(14px); box-shadow: 0 7px 30px rgba(0,0,0,.28); }
.header-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 22px; }
.brand img { width: 40px; height: 40px; border-radius: 12px; object-fit: cover; }
.desktop-nav { display: flex; gap: 25px; align-items: center; }
.desktop-nav a { font-size: 14px; color: var(--muted); font-weight: 600; transition: color .2s; }
.desktop-nav a:hover { color: var(--text); }
.nav-cta { background: var(--red); color: #fff !important; padding: 9px 20px; border-radius: 8px; font-weight: 900 !important; }
.menu-button { display: none; border: 0; background: none; padding: 8px; cursor: pointer; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px 0; background: #fff; transition: .2s; }
.mobile-nav { display: none; padding: 5px 16px 18px; flex-direction: column; gap: 4px; background: rgba(13,13,13,.96); border-top: 1px solid #242424; }
.mobile-nav a { padding: 10px 0; color: var(--muted); font-size: 14px; font-weight: 600; }
.mobile-nav .nav-cta { text-align: center; margin-top: 5px; padding: 11px 15px; }

main { padding-top: 0; }
.hero { position: relative; height: 80vh; min-height: 610px; overflow: hidden; background: var(--bg); }
.hero-slides, .hero-slide, .hero-shade { position: absolute; inset: 0; }
.hero-slide { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(13,13,13,.82) 43%, rgba(13,13,13,.25) 100%),
              linear-gradient(0deg, var(--bg) 0%, transparent 50%, rgba(13,13,13,.48) 100%);
}
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px 20px; }
.hero h1 { margin: 0 0 14px; max-width: 1100px; font-size: clamp(58px, 6.7vw, 96px); line-height: .98; letter-spacing: -4px; font-weight: 950; text-shadow: 0 3px 24px #000; }
.hero h1 span { display: block; color: var(--red); margin-top: 9px; }
.hero h1 .hero-main-line { color: var(--text); margin-top: 0; }
.hero-content > p { margin: 0 0 34px; font-size: clamp(22px, 2.1vw, 30px); font-weight: 600; text-shadow: 0 2px 12px #000; }
.hero-actions { display: flex; gap: 24px; justify-content: center; }
.primary-button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 12px 38px; border: 2px solid rgba(255,60,60,.4); border-radius: 12px;
  background: var(--red); color: #fff; font-size: 18px; font-weight: 900; letter-spacing: .02em;
  box-shadow: 0 12px 28px rgba(236,19,19,.27); transition: transform .25s, filter .25s;
  animation: redPulse 2.1s infinite;
}
.primary-button:hover { transform: translateY(-5px) scale(1.04); filter: brightness(1.08); }
.hero-dots { position: absolute; z-index: 3; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; }
.hero-dot { width: 11px; height: 11px; border: 0; padding: 0; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: .3s; }
.hero-dot.active { background: var(--red); transform: scale(1.15); }
@keyframes redPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(236,19,19,.36), 0 12px 28px rgba(236,19,19,.25); } 50% { box-shadow: 0 0 0 9px transparent, 0 12px 34px rgba(236,19,19,.38); } }

.premium { position: relative; overflow: hidden; padding: 80px 0; background: linear-gradient(90deg, rgba(236,19,19,.10), transparent 50%, rgba(255,106,26,.10)); }
.premium-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .2; width: 360px; height: 360px; background: var(--red); }
.premium-glow.one { top: -190px; left: 25%; }
.premium-glow.two { right: 20%; bottom: -260px; width: 500px; height: 500px; background: var(--orange); }
.premium-inner { position: relative; text-align: center; }
.premium h2 { margin: 0 0 20px; font-size: clamp(34px, 4vw, 48px); line-height: 1.15; font-weight: 950; text-shadow: 0 0 20px rgba(236,19,19,.8); }
.section-lead { max-width: 900px; margin: 0 auto 48px; color: var(--muted); font-size: 22px; }
.benefit-grid { max-width: 1152px; margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.benefit-card { min-height: 209px; padding: 24px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(145deg, var(--surface), #1a1a1a); box-shadow: 0 8px 32px rgba(0,0,0,.55); transition: transform .3s; }
.benefit-card:hover { transform: translateY(-10px) scale(1.02); }
.benefit-icon { width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; margin: 0 auto 16px; font-size: 27px; background: linear-gradient(135deg, var(--red), var(--orange)); box-shadow: 0 8px 22px rgba(236,19,19,.25); }
.benefit-card h3 { margin: 0 0 8px; font-size: 20px; }
.benefit-card p { margin: 0; color: var(--muted); }

.catalog-section { padding: 64px 0; scroll-margin-top: 62px; }
.section-heading { display: flex; gap: 13px; align-items: center; margin-bottom: 32px; }
.heading-icon { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--red), var(--orange)); font-size: 23px; font-weight: 900; }
.section-heading h2 { margin: 0; font-size: 30px; line-height: 1.18; font-weight: 950; text-shadow: 0 0 20px rgba(236,19,19,.68); }
.section-heading p { color: var(--muted); margin: 2px 0 0; }
.movie-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 16px; margin-bottom: 32px; }
.movie-card { position: relative; aspect-ratio: 2/3; overflow: hidden; border-radius: 12px; background: var(--surface); cursor: pointer; box-shadow: 0 8px 22px rgba(0,0,0,.32); transition: transform .3s, box-shadow .3s; }
.movie-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 34px rgba(0,0,0,.65); }
.movie-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.movie-card:hover > img { transform: scale(1.1); }
.movie-overlay { position: absolute; inset: 0; opacity: 0; transition: opacity .3s; background: linear-gradient(0deg, rgba(8,8,8,.96), transparent 62%); }
.movie-card:hover .movie-overlay { opacity: 1; }
.movie-info { position: absolute; inset: auto 0 0; padding: 16px; }
.movie-info h3 { margin: 0 0 9px; font-size: 14px; line-height: 1.3; }
.movie-meta { display: flex; justify-content: space-between; color: #c7c7c7; font-size: 12px; }
.watch-badge { position: absolute; top: 9px; right: 9px; padding: 4px 8px; border-radius: 999px; background: rgba(236,19,19,.92); font-size: 11px; font-weight: 900; opacity: 0; transition: .3s; }
.movie-card:hover .watch-badge { opacity: 1; }
.play-circle { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%) scale(.8); width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); font-size: 23px; opacity: 0; transition: .3s; box-shadow: 0 0 25px rgba(255,106,26,.6); }
.movie-card:hover .play-circle { opacity: 1; transform: translate(-50%,-50%) scale(1); }

.categories { padding: 80px 0; scroll-margin-top: 62px; background: rgba(13,13,13,.95); }
.center-heading { text-align: center; margin-bottom: 60px; }
.center-heading h2 { margin: 0 0 16px; font-size: clamp(36px, 4vw, 48px); line-height: 1.15; }
.center-heading p { max-width: 760px; margin: auto; color: var(--muted); font-size: 19px; }
.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.category-card { max-width: 370px; margin-inline: auto; overflow: hidden; border: 1px solid rgba(236,19,19,.22); border-radius: 16px; background: linear-gradient(180deg, rgba(236,19,19,.15), rgba(236,19,19,.04)); box-shadow: 0 18px 35px rgba(0,0,0,.5); transition: .3s; cursor: pointer; }
.category-card:hover { transform: scale(1.04); border-color: rgba(236,19,19,.46); }
.category-visual { position: relative; height: 224px; display: grid; place-items: center; background: var(--surface-2); overflow: hidden; }
.category-visual span { font-size: 82px; }
.category-visual strong { position: absolute; inset: auto 0 0; padding: 42px 15px 15px; text-align: center; font-size: 17px; background: linear-gradient(transparent, rgba(8,8,8,.9)); }
.category-copy { padding: 24px; text-align: center; }
.category-copy h3 { margin: 0 0 14px; font-size: 20px; }
.category-copy p { margin: 0; color: var(--muted); font-size: 14px; }

.plans { padding: 80px 0; scroll-margin-top: 60px; background: var(--bg-deep); }
.plans-heading { margin-bottom: 64px; }
.plan-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; align-items: stretch; }
.plan-card { position: relative; height: 100%; padding: 30px 24px 24px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); box-shadow: 0 8px 28px rgba(0,0,0,.4); transition: .3s; }
.plan-card:hover { transform: scale(1.02); border-color: rgba(236,19,19,.5); }
.plan-card.highlighted { background: #fff; color: #111; border: 2px solid var(--red); box-shadow: 0 0 40px rgba(236,19,19,.45); }
.top-badge { position: absolute; z-index: 2; left: 50%; top: -17px; transform: translateX(-50%); white-space: nowrap; border-radius: 999px; padding: 7px 16px; background: linear-gradient(90deg, var(--orange), var(--red)); color: #fff; font-size: 11px; font-weight: 900; box-shadow: 0 8px 18px rgba(236,19,19,.35); }
.plan-icon { width: 44px; height: 44px; display: grid; place-items: center; margin: 0 auto 12px; border-radius: 12px; background: #242424; color: var(--muted); }
.highlighted .plan-icon { background: rgba(236,19,19,.1); color: var(--red); }
.plan-card h3 { text-align: center; margin: 0; font-size: 18px; letter-spacing: .07em; }
.discount { width: fit-content; margin: 9px auto 16px; padding: 3px 10px; border-radius: 999px; background: rgba(234,179,8,.14); color: #eab308; font-size: 11px; font-weight: 900; }
.highlighted .discount { background: #111; color: #fff; }
.old-price { text-align: center; margin: 0 0 3px; color: var(--muted); font-size: 12px; }
.highlighted .old-price, .highlighted .equivalent { color: rgba(0,0,0,.62); }
.price { display: flex; align-items: flex-start; justify-content: center; line-height: 1; font-weight: 950; }
.price .currency { font-size: 18px; margin: 10px 5px 0 0; }
.price .number { font-size: 60px; }
.price .cents { font-size: 30px; margin-top: 8px; }
.highlighted .price .number, .highlighted .price .cents { color: var(--red); }
.equivalent { text-align: center; margin: 9px 0 0; color: var(--muted); font-size: 12px; }
.plan-divider { height: 1px; margin: 18px 0; background: var(--border); }
.highlighted .plan-divider { background: rgba(0,0,0,.17); }
.plan-benefits { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.plan-benefits li { position: relative; padding-left: 22px; color: var(--muted); font-size: 13px; }
.plan-benefits li::before { content: "✓"; position: absolute; left: 0; color: #22c55e; font-weight: 900; }
.highlighted .plan-benefits li { color: rgba(0,0,0,.72); }
.highlighted .plan-benefits li::before { color: var(--red); }
.plan-button { display: flex; min-height: 50px; align-items: center; justify-content: center; text-align: center; border: 1px solid var(--border); border-radius: 7px; background: #242424; color: #fff; font-size: 12px; font-weight: 900; letter-spacing: .04em; transition: .25s; }
.plan-button:hover { transform: scale(1.03); filter: brightness(1.1); }
.highlighted .plan-button { border: 0; background: linear-gradient(90deg, var(--orange), var(--red)); animation: redPulse 2.1s infinite; }
.plan-extra { text-align: center; margin: 10px 0 0; color: rgba(0,0,0,.55); font-size: 10px; }
.trust-row { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px; color: var(--muted); font-size: 12px; }

.download-counter { position: fixed; z-index: 45; left: 17px; bottom: 17px; display: flex; align-items: center; gap: 11px; padding: 11px 16px; border: 2px solid var(--red); border-radius: 16px; background: rgba(13,13,13,.9); backdrop-filter: blur(12px); color: #fff; font-size: 13px; font-weight: 800; box-shadow: 0 12px 30px rgba(0,0,0,.65); }
.download-counter i { width: 10px; height: 10px; border-radius: 50%; background: var(--red); animation: dotPulse 1.3s infinite; }
@keyframes dotPulse { 50% { opacity: .35; transform: scale(.72); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.movie-card { animation: cardIn .5s both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(30px); } }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.82); backdrop-filter: blur(7px); cursor: pointer; }
.modal-card { position: relative; z-index: 1; width: min(900px, 96vw); max-height: 90vh; overflow: auto; display: grid; grid-template-columns: 330px 1fr; gap: 32px; padding: 32px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg); box-shadow: 0 30px 80px #000; }
.modal-poster { width: 100%; border-radius: 12px; box-shadow: 0 15px 32px rgba(0,0,0,.5); }
.modal-copy { align-self: center; }
.modal-tag { color: var(--red); font-weight: 900; font-size: 12px; letter-spacing: .13em; }
.modal-copy h2 { font-size: 36px; line-height: 1.1; margin: 10px 0 12px; }
.modal-copy p { color: var(--muted); }
.modal-meta { color: #f4c542 !important; font-weight: 800; }
.modal-copy .primary-button { margin-top: 20px; font-size: 14px; padding-inline: 24px; }
.modal-close { position: absolute; z-index: 3; top: 11px; right: 14px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #242424; color: #fff; font-size: 28px; line-height: 1; cursor: pointer; }

@media (max-width: 1000px) {
  .benefit-grid, .category-grid, .plan-grid { grid-template-columns: repeat(2,1fr); }
  .movie-grid { grid-template-columns: repeat(4,1fr); }
  .hero h1 { letter-spacing: -2px; }
}

@media (max-width: 760px) {
  .container { max-width: 620px; padding-inline: 14px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav.open { display: flex; }
  .brand { font-size: 19px; }
  .brand img { width: 36px; height: 36px; }
  main { padding-top: 0; }
  .header-inner { height: 60px; }
  .hero { height: 100svh; min-height: 620px; max-height: 900px; }
  .hero-slide { object-position: center center; }
  .hero-shade { background: linear-gradient(0deg, var(--bg) 0%, rgba(13,13,13,.4) 58%, rgba(13,13,13,.75)), linear-gradient(90deg, rgba(13,13,13,.7), rgba(13,13,13,.18)); }
  .hero-content { justify-content: center; padding: 54px 14px 84px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(38px, 10.5vw, 44px); line-height: .98; letter-spacing: -1.5px; }
  .hero h1 span { margin-top: 7px; white-space: nowrap; }
  .hero-content > p { margin-bottom: 25px; font-size: clamp(15px, 4.3vw, 17px); white-space: nowrap; }
  .hero-actions { width: min(100%, 360px); flex-direction: column; gap: 12px; }
  .hero .primary-button { width: 100%; min-height: 50px; padding: 10px 14px; border-radius: 11px; font-size: 14px; }
  .hero-dots { bottom: 76px; }
  .premium, .categories, .plans { padding: 64px 0; }
  .premium h2 { font-size: 34px; }
  .section-lead { font-size: 17px; margin-bottom: 36px; }
  .benefit-grid, .category-grid, .plan-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; }
  .catalog-section { padding: 48px 0; }
  .section-heading h2 { font-size: 25px; }
  .section-heading p { font-size: 14px; }
  .movie-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .center-heading { margin-bottom: 38px; }
  .center-heading h2 { font-size: 35px; }
  .center-heading p { font-size: 16px; }
  .category-card { width: 100%; max-width: 410px; }
  .plan-grid { gap: 34px; }
  .plan-card { max-width: 430px; width: 100%; margin: auto; }
  .download-counter { left: 11px; bottom: 11px; padding: 9px 12px; font-size: 11px; }
  .modal-card { grid-template-columns: 1fr; padding: 24px; gap: 20px; }
  .modal-poster { width: min(65%, 250px); margin: auto; }
  .modal-copy h2 { font-size: 29px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
