*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #05050a;
  --bg-elev: #12121c;
  --text: #f7f4ee;
  --muted: #9a9488;
  --red: #e11d48;
  --red-hot: #ff3b6b;
  --gold: #f5c451;
  --gold-soft: #ffe08a;
  --green: #34d399;
  --glass: rgba(18, 18, 28, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --display: 'Outfit', 'Manrope', system-ui, sans-serif;
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --max: 430px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: calc(96px + var(--safe-bottom));
  -webkit-font-smoothing: antialiased;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.bg-orb--1 {
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(225, 29, 72, 0.28);
  animation: drift 12s ease-in-out infinite;
}

.bg-orb--2 {
  top: 40%;
  left: -120px;
  width: 260px;
  height: 260px;
  background: rgba(245, 196, 81, 0.12);
  animation: drift 16s ease-in-out infinite reverse;
}

.bg-orb--3 {
  bottom: 120px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: rgba(16, 185, 129, 0.1);
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 18px) scale(1.08); }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(22px) saturate(1.4);
  background: rgba(5, 5, 10, 0.72);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ff4d73, #be123c 55%, #7f1d1d);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fff;
}

.logo__text {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo__text span,
.footer__logo span {
  background: linear-gradient(90deg, #f5c451, #ff8a4c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lang-switch {
  display: flex;
  padding: 4px;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--muted);
}

.lang-switch [data-lang] {
  padding: 7px 11px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.lang-switch [data-lang].active {
  background: linear-gradient(180deg, #f5c451, #d4a017);
  color: #1a1204;
  box-shadow: 0 4px 12px rgba(245, 196, 81, 0.35);
}

main {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding-bottom: 8px;
}

.hero__collage {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.hero__shot {
  position: absolute;
  width: 108px;
  height: 162px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__shot--1 { left: 6%; top: 48px; transform: rotate(-14deg); }
.hero__shot--2 { left: 22%; top: 22px; transform: rotate(-7deg); z-index: 2; }
.hero__shot--3 { left: 50%; top: 10px; transform: translateX(-50%) rotate(0deg); z-index: 3; width: 124px; height: 186px; }
.hero__shot--4 { right: 22%; top: 22px; transform: rotate(7deg); z-index: 2; }
.hero__shot--5 { right: 6%; top: 48px; transform: rotate(14deg); }

.hero__collage-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 10, 0.15) 20%, var(--bg) 94%);
  z-index: 4;
}

.hero__content {
  position: relative;
  z-index: 5;
  margin-top: -72px;
  padding: 0 20px 28px;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1a1204;
  background: linear-gradient(180deg, #ffe08a, #f5c451);
  box-shadow: 0 8px 24px rgba(245, 196, 81, 0.28);
}

.hero__badge::before {
  content: "VIP";
  padding: 2px 6px;
  border-radius: 999px;
  background: #1a1204;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

.hero__title span {
  background: linear-gradient(90deg, #f5c451 0%, #ff8a4c 50%, #ff4d73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 340px;
  margin: 0 auto 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: linear-gradient(180deg, #ff4d73 0%, #e11d48 45%, #be123c 100%);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: shine 2.8s ease-in-out infinite;
}

@keyframes shine {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}

.btn--hero,
.btn--download {
  width: 100%;
  max-width: 360px;
  padding: 15px 22px;
}

.btn--sticky {
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
  border-radius: 999px;
}

.btn--full {
  width: 100%;
  padding: 16px;
  font-weight: 800;
  border-radius: 16px;
}

.btn__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.btn__text strong {
  font-size: 1rem;
  font-weight: 800;
}

.btn__text small {
  font-size: 0.72rem;
  opacity: 0.85;
  font-weight: 500;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.stat {
  padding: 12px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
}

.stat span {
  font-size: 0.72rem;
  color: var(--muted);
}

.billboard {
  padding: 4px 18px 22px;
}

.billboard__card {
  position: relative;
  height: 210px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.billboard__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.billboard__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 5, 10, 0.92) 100%);
}

.billboard__meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.billboard__kicker {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.billboard__meta h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.billboard__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

.billboard__play {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  font-size: 0.85rem;
}

.section {
  padding: 6px 0 18px;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 12px;
}

.section__head h2 {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section__tag {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 196, 81, 0.1);
  border: 1px solid rgba(245, 196, 81, 0.22);
}

.section__tag--green {
  color: var(--green);
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.22);
}

.movies-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 18px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.movies-scroll::-webkit-scrollbar {
  display: none;
}

.movie-card {
  flex: 0 0 142px;
  scroll-snap-align: start;
  cursor: pointer;
  animation: rise 0.55s ease both;
}

.movie-card:nth-child(2) { animation-delay: 0.05s; }
.movie-card:nth-child(3) { animation-delay: 0.1s; }
.movie-card:nth-child(4) { animation-delay: 0.15s; }
.movie-card:nth-child(5) { animation-delay: 0.2s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.movie-card__poster {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 16px;
  background: #161622;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.movie-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.movie-card:active .movie-card__poster img,
.movie-card:hover .movie-card__poster img {
  transform: scale(1.08);
}

.movie-card__shade {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.movie-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  background: rgba(0, 0, 0, 0.28);
}

.movie-card__play span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  font-size: 0.85rem;
  padding-left: 2px;
}

.movie-card:hover .movie-card__play,
.movie-card:active .movie-card__play {
  opacity: 1;
}

.movie-card__rating {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 7px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold-soft);
  background: rgba(10, 10, 16, 0.72);
  backdrop-filter: blur(8px);
}

.movie-card__vip {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 7px;
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #ff4d73, #be123c);
  box-shadow: 0 6px 14px rgba(225, 29, 72, 0.4);
}

.movie-card__info {
  padding: 9px 2px 0;
}

.movie-card__title {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card__meta {
  margin-top: 3px;
  font-size: 0.7rem;
  color: var(--muted);
}

.features {
  padding: 10px 18px 28px;
}

.features__kicker {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.features h2 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-card {
  padding: 16px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
}

.feature-card__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 11px;
  background: rgba(245, 196, 81, 0.1);
  color: var(--gold);
  font-size: 1.05rem;
}

.feature-card h3 {
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.feature-card p {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

.download {
  padding: 4px 18px 36px;
}

.download__card {
  position: relative;
  padding: 22px 20px 26px;
  border-radius: 26px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(225, 29, 72, 0.38), transparent 55%),
    linear-gradient(180deg, #1a1020 0%, #0d0d14 100%);
  border: 1px solid rgba(255, 77, 115, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.download__phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 128px;
  margin-bottom: 8px;
}

.download__phones img {
  width: 78px;
  height: 118px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.download__phones img:nth-child(1) { transform: rotate(-12deg) translateY(10px); }
.download__phones img:nth-child(2) { transform: translateY(-6px); z-index: 2; width: 88px; height: 132px; }
.download__phones img:nth-child(3) { transform: rotate(12deg) translateY(10px); }

.download__label {
  display: inline-block;
  margin: 10px 0 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1204;
  background: var(--gold);
}

.download__card h2 {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.download__card h2 span {
  color: var(--gold);
}

.download__desc {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.download__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.download__trust span {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.18);
}

.footer {
  text-align: center;
  padding: 8px 20px 18px;
}

.footer__logo {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.footer p {
  font-size: 0.74rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 16px calc(12px + var(--safe-bottom));
  background: rgba(8, 8, 14, 0.92);
  backdrop-filter: blur(22px);
  border-top: 1px solid rgba(245, 196, 81, 0.22);
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.55);
}

.sticky-cta__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sticky-cta__info strong {
  font-size: 0.86rem;
  color: var(--gold);
}

.sticky-cta__info span {
  font-size: 0.7rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: var(--max);
  padding: 22px 22px calc(28px + var(--safe-bottom));
  background: linear-gradient(180deg, #1a1520, #0c0c12);
  border-radius: 28px 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  animation: slideUp 0.32s ease;
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
}

.modal__poster {
  width: 92px;
  height: 132px;
  margin: 8px auto 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #222;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.modal__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal__content h3 {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal__content p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

@media (min-width: 431px) {
  .sticky-cta {
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
  }
}
