:root {
  --bg: #050507;
  --bg-soft: #0d0f14;
  --panel: #171a22;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f3f4f6;
  --muted: #aeb3bf;
  --red: #ff102d;
  --red-deep: #b40418;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 24px 42px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 3%, rgba(255, 16, 45, 0.2) 0%, rgba(5, 5, 7, 0) 40%),
    radial-gradient(circle at 10% 25%, rgba(255, 120, 20, 0.14) 0%, rgba(5, 5, 7, 0) 35%),
    linear-gradient(180deg, #07080d 0%, #080a11 45%, #050507 100%);
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 0.6px, transparent 0.6px);
  background-size: 2px 2px;
  opacity: 0.14;
  z-index: 0;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header,
.section,
.site-footer {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.site-header {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 13, 18, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}

.brand {
  color: var(--red);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  gap: 1.2rem;
}

nav a {
  color: #d7dae0;
  text-decoration: none;
  font-size: 0.95rem;
}

.section {
  padding: 2.8rem 0;
}

.hero {
  position: relative;
  min-height: 82vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 1rem;
  background-image:
    linear-gradient(105deg, rgba(8, 8, 11, 0.95) 20%, rgba(8, 8, 11, 0.55) 60%, rgba(8, 8, 11, 0.9) 100%),
    url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 16, 45, 0.2), transparent 45%);
}

.hero-content {
  position: relative;
  padding:
    clamp(1.6rem, 4.8vw, 3.84rem)
    clamp(2rem, 6vw, 4.8rem)
    clamp(1.8rem, 5.4vw, 4.32rem);
  max-width: 760px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffb86a;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.hero h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.4rem, 8vw, 5.1rem);
  line-height: 1.02;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero p {
  margin-top: 1rem;
  max-width: 53ch;
  color: #d9dce3;
  line-height: 1.7;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.88rem 1.5rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: 0 12px 26px rgba(255, 16, 45, 0.32);
}

.btn-outline {
  color: #f3f4f8;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.mini-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 2rem;
}

.mini-benefits article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(20, 23, 31, 0.82);
  padding: 1.2rem;
}

.mini-benefits h3 {
  font-size: 1.25rem;
}

.mini-benefits p {
  color: var(--muted);
  margin: 0.5rem 0 0;
  line-height: 1.6;
}

.section-head h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
}

.movie-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #171a22;
  box-shadow: var(--shadow);
}

.poster {
  height: 290px;
  background-size: cover;
  background-position: center;
}

.poster-1 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55)),
    url("./images/enola holmes.jpg"),
    url("https://images.unsplash.com/photo-1505686994434-e3cc5abf1330?auto=format&fit=crop&w=900&q=80");
}

.poster-2 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58)),
    url("./images/avatar 2.webp"),
    url("https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=900&q=80");
}

.poster-3 {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58)),
    url("./images/lupin.webp"),
    url("https://images.unsplash.com/photo-1517604931442-7e0c8ed2963c?auto=format&fit=crop&w=900&q=80");
}

.movie-info {
  padding: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--red);
}

.movie-info h3 {
  margin-top: 0.7rem;
  font-size: 1.46rem;
}

.live-feed {
  margin-top: 1.35rem;
  padding: clamp(1rem, 2.4vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(255, 16, 45, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(6, 7, 10, 0.98), rgba(10, 11, 15, 0.98));
  box-shadow: var(--shadow);
}

.feed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.feed-item + .feed-item {
  margin-top: 0.9rem;
}

.feed-item-fresh {
  animation: feed-item-in 0.35s ease;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feed-item-approval,
.feed-item-badge,
.feed-item-paid {
  border-color: rgba(255, 255, 255, 0.1);
}

.feed-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.feed-tag {
  flex: 0 0 auto;
  min-width: 6.2rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feed-item-approval .feed-tag {
  color: #7ef0b4;
  background: rgba(22, 163, 74, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.feed-item-badge .feed-tag {
  color: #ffd666;
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.45);
}

.feed-item-paid .feed-tag {
  color: #ff8a97;
  background: rgba(255, 16, 45, 0.12);
  border: 1px solid rgba(255, 16, 45, 0.44);
}

.feed-main p {
  margin: 0;
  color: #d8dbe3;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.5;
}

.feed-time {
  flex: 0 0 auto;
  color: #7f8595;
  font-size: 0.95rem;
  font-weight: 700;
}

.live-feed-note {
  margin: 1.15rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: #38e07a;
  font-weight: 700;
}

.live-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  animation: live-pulse 1.8s infinite;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.meta {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.earn {
  margin: 0.55rem 0 0;
  color: #ff4c61;
  font-weight: 700;
}

.steps-grid {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.steps-grid li {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(23, 26, 34, 0.88);
  padding: 1rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.step-num {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--red);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex: 0 0 3rem;
}

.steps-grid p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.testimonials-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(23, 26, 34, 0.88);
  padding: 1.1rem;
}

.author {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.author span {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--red);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.author h3 {
  font-size: 1.15rem;
}

.rating {
  margin: 0.12rem 0 0;
  color: #ff4c61;
  font-weight: 700;
}

.testimonial p {
  line-height: 1.68;
}

.mid-cta,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(20, 24, 34, 0.95), rgba(9, 10, 15, 0.95));
  text-align: center;
}

.final-cta {
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.mid-cta p,
.final-cta p {
  color: var(--muted);
  max-width: 56ch;
  margin-inline: auto;
  line-height: 1.7;
}

.mid-cta .btn,
.final-cta .btn {
  margin-top: 1.2rem;
}

.faq-list {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(22, 25, 35, 0.82);
  padding: 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.fine {
  margin-top: 0.8rem;
  font-size: 0.94rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding: 1.5rem 0 2rem;
  color: #9ea4b3;
  text-align: center;
}

.site-footer p {
  margin: 0.3rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 74vh;
  }

  .movie-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mini-benefits,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 2.0rem 0;
  }

  .site-header {
    border-radius: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 1.2rem 1.2rem 2.25rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .feed-item,
  .feed-main {
    align-items: flex-start;
  }

  .feed-item {
    flex-direction: column;
  }

  .feed-main {
    flex-direction: column;
    gap: 0.75rem;
  }

  .feed-tag,
  .feed-time {
    align-self: flex-start;
  }

  .movie-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .poster {
    height: 250px;
  }
}
