@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #07040b;
  --bg-soft: #0f0816;
  --card: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.11);
  --text: #ffffff;
  --muted: #b6aebd;
  --pink: #ff2f92;
  --pink-2: #b429ff;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a, input { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 3px solid #fff; outline-offset: 4px;
}

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 78px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: linear-gradient(to bottom, rgba(4,2,6,.95), rgba(4,2,6,.42), transparent);
  backdrop-filter: blur(6px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.7px; }
.brand > span:last-child > span { color: var(--pink); }
.brand-mark, .brand-logo {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  box-shadow: 0 0 28px rgba(255,47,146,.4);
}
.brand-logo { object-fit: cover; display: block; }
.nav { display: flex; gap: 32px; font-size: 14px; color: #ddd5e1; }
.nav a:hover { color: #fff; }
.btn {
  border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 12px;
  color: #fff; font-weight: 700;
  background: linear-gradient(135deg, var(--pink), #d526ff);
  box-shadow: 0 12px 34px rgba(255,47,146,.26);
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(255,47,146,.34); }
.btn-small { min-height: 40px; padding: 0 18px; font-size: 13px; }
.btn-ghost {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); box-shadow: none;
}
.hero {
  position: relative; min-height: 760px; height: 100vh; display: flex; align-items: center;
  padding: 120px 7vw 90px; overflow: hidden;
}
.hero-backdrop {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,3,15,.48), rgba(9,3,15,.82)),
    url("igaraflixlogo.png") center/cover no-repeat,
    radial-gradient(circle at 75% 25%, rgba(255,47,146,.2), transparent 30%),
    linear-gradient(110deg, #1a0d22 0%, #0b0710 50%, #190c21 100%);
  background-size: cover; background-position: center 20%;
  transform: scale(1.02);
  transition: background-image .6s ease;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,2,8,.98) 0%, rgba(5,2,8,.82) 35%, rgba(5,2,8,.25) 70%, rgba(5,2,8,.52) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.eyebrow {
  display: inline-block; color: #ff7abd; font-size: 12px; font-weight: 800;
  letter-spacing: 2.3px; margin-bottom: 18px;
}
.hero h1 {
  margin: 0; font-size: clamp(50px, 6.4vw, 96px); line-height: .99;
  letter-spacing: -4px; font-weight: 800;
}
.hero h1 strong {
  background: linear-gradient(90deg, #fff, #ff77bd 45%, #d74cff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { max-width: 670px; font-size: 18px; line-height: 1.75; color: #c8becd; margin: 28px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.play { font-size: 13px; }
.hero-meta { margin-top: 28px; display: flex; align-items: center; gap: 12px; color: #918897; font-size: 12px; }
.hero-meta i { width: 3px; height: 3px; border-radius: 50%; background: #6d6671; }
.scroll-hint {
  position: absolute; bottom: 30px; right: 6vw; z-index: 3; color: #8f8792;
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
}
.scroll-hint span { color: #fff; margin-left: 8px; }

.section { padding: 110px 6vw; max-width: 1500px; margin: 0 auto; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.section-heading h2, .feature-banner h2, .platform-copy h2, .launch h2 {
  margin: 0; font-size: clamp(34px, 4vw, 58px); line-height: 1.05; letter-spacing: -2.5px;
}
.section-heading.centered { text-align: center; display: block; max-width: 700px; margin: 0 auto 45px; }
.section-heading.centered p { color: var(--muted); }
.text-button { color: #d5cbd9; background: transparent; border: 0; cursor: pointer; }
.text-button:hover { color: #fff; }
.status { color: #9d93a2; margin-bottom: 20px; min-height: 20px; }

.movie-grid {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px;
}
.movie-card {
  position: relative; min-width: 0; aspect-ratio: 2/3; border-radius: 18px; overflow: hidden;
  background: #18101e; border: 1px solid var(--line);
  transform: translateY(0); transition: transform .25s, border-color .25s;
}
.movie-card:hover { transform: translateY(-8px); border-color: rgba(255,92,174,.5); }
.movie-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.movie-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
  background: linear-gradient(0deg, rgba(5,2,8,.97), rgba(5,2,8,.03) 64%);
}
.movie-overlay h3 { margin: 0 0 6px; font-size: 15px; line-height: 1.25; }
.movie-overlay p { margin: 0; color: #c3b8c7; font-size: 11px; }
.rating {
  position: absolute; top: 10px; right: 10px; padding: 6px 8px; border-radius: 9px;
  font-size: 11px; font-weight: 800; background: rgba(7,4,11,.72); backdrop-filter: blur(8px);
}
.placeholder-card { display: grid; place-items: end start; padding: 16px; background: linear-gradient(145deg, #2b1537, #100817); }
.placeholder-card span { color: #d9cddd; font-weight: 700; }

.feature-banner {
  margin: 30px 4vw 80px; border-radius: 34px; min-height: 460px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; padding: 75px 7vw;
  background:
    radial-gradient(circle at 80% 25%, rgba(245,48,159,.32), transparent 28%),
    linear-gradient(135deg, #1d0d27, #09050d 65%);
  border: 1px solid rgba(255,255,255,.09); overflow: hidden;
}
.feature-banner p, .platform-copy p {
  color: var(--muted); font-size: 17px; line-height: 1.8; max-width: 620px;
}
.device-stage { position: relative; min-height: 300px; }
.tv { position: absolute; width: 82%; right: 0; top: 20px; }
.tv-screen {
  aspect-ratio: 16/9; border: 8px solid #211927; border-radius: 16px;
  background: radial-gradient(circle at 65% 30%, #a82072, #321038 48%, #09050e 90%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.tv-base { width: 28%; height: 16px; background: #2b222f; margin: 0 auto; border-radius: 0 0 50% 50%; }
.mini-logo { font-weight: 900; letter-spacing: 3px; font-size: 24px; }
.mini-copy { color: #d6c8db; font-size: 12px; margin-top: 8px; }
.phone {
  position: absolute; width: 125px; aspect-ratio: 9/19; left: 2%; bottom: -10px;
  border: 7px solid #29202d; border-radius: 28px; padding: 4px; background: #0a060c;
  box-shadow: 0 25px 55px rgba(0,0,0,.55); transform: rotate(-5deg);
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 19px; overflow: hidden;
  background: linear-gradient(160deg, #2b0d29, #08050c);
  display: grid; place-content: center; text-align: center; font-size: 15px; font-weight: 900;
}
.phone-screen strong { color: var(--pink); }
.phone-glow { position: absolute; width: 90px; height: 90px; background: var(--pink); filter: blur(50px); opacity: .35; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  padding: 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
}
.feature-card .icon {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255,47,146,.12); color: #ff71b7; font-weight: 900; margin-bottom: 48px;
}
.feature-card h3 { font-size: 18px; margin: 0 0 12px; }
.feature-card p { color: var(--muted); line-height: 1.7; font-size: 14px; margin: 0; }

.platforms { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.platform-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.platform-list div {
  min-height: 150px; padding: 25px; border-radius: 20px; border: 1px solid var(--line);
  background: var(--card); display: flex; flex-direction: column; justify-content: center;
}
.platform-list span { font-size: 25px; margin-bottom: 18px; }
.platform-list strong { font-size: 17px; margin-bottom: 5px; }
.platform-list small { color: var(--muted); }

.launch {
  position: relative; overflow: hidden; text-align: center; padding: 120px 24px 130px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: #0d0712;
}
.launch-glow {
  position: absolute; width: 700px; height: 260px; left: 50%; top: 35%;
  transform: translate(-50%,-50%); background: #bd2479; filter: blur(150px); opacity: .22;
}
.launch > *:not(.launch-glow) { position: relative; z-index: 1; }
.launch p { color: var(--muted); }
.notify-form { display: flex; gap: 10px; max-width: 570px; margin: 28px auto 18px; }
.notify-form input {
  flex: 1; min-width: 0; min-height: 50px; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,.06); color: #fff; padding: 0 16px; outline: none;
}
.notify-form input:focus { border-color: rgba(255,91,171,.7); }
.launch small { color: #776f7c; }

footer {
  padding: 42px 6vw; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  color: #827a87; font-size: 12px;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: #fff; }
.tmdb-note { grid-column: 1 / -1; text-align: center; margin: 0; font-size: 10px; color: #625b66; }
.mobile-nav { display: none; }

@media (max-width: 1100px) {
  .movie-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-banner, .platforms { grid-template-columns: 1fr; }
  .device-stage { min-height: 390px; }
  .nav { display: none; }
}
.checkout-form { display:grid; grid-template-columns:1fr; gap:14px; max-width:560px; }
.checkout-email { display:grid; gap:7px; text-align:left; color:#d8cddd; font-size:12px; font-weight:700; }
.checkout-email input { width:100%; min-width:300px; }
.checkout-actions { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.checkout-actions .btn { width:100%; white-space:normal; }
.header-actions { display:flex; gap:10px; align-items:center; }
.checkout-email input + input { margin-top:7px; }
.login-modal[hidden] { display:none; }.login-modal { position:fixed; inset:0; z-index:120; display:grid; place-items:center; padding:20px; background:rgba(3,1,5,.76); backdrop-filter:blur(10px); }.login-modal form { position:relative; width:min(100%,410px); display:grid; gap:12px; padding:34px; border:1px solid rgba(255,76,160,.42); border-radius:20px; background:#180d20; box-shadow:0 25px 90px #000; }.login-modal h2{margin:0}.login-modal p{margin:0 0 8px;color:var(--muted)}.login-modal input{min-height:50px;padding:0 14px;border:1px solid var(--line);border-radius:10px;background:#0e0814;color:#fff}.modal-close{position:absolute;top:9px;right:13px;border:0;background:transparent;color:#fff;font-size:28px;cursor:pointer}

@media (max-width: 680px) {
  body { padding-bottom: 76px; }
  .topbar { padding: 0 18px; }
  .btn-small { display: none; }
  .hero { padding: 120px 22px 70px; min-height: 720px; }
  .hero h1 { letter-spacing: -2.2px; }
  .hero p { font-size: 15px; }
  .hero-meta { flex-wrap: wrap; }
  .section { padding: 78px 20px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .movie-grid { grid-template-columns: repeat(2, 1fr); gap: 11px; }
  .movie-grid .movie-card:nth-child(n+7) { display: none; }
  .feature-banner { margin: 10px 12px 60px; padding: 60px 22px; }
  .feature-grid { grid-template-columns: 1fr; }
  .platform-list { grid-template-columns: 1fr 1fr; }
  .platform-list div { min-height: 130px; padding: 18px; }
  .notify-form { flex-direction: column; }
  footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .mobile-nav { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); min-height: 68px; padding: 7px 8px calc(7px + env(safe-area-inset-bottom)); background: rgba(13, 7, 18, .96); border-top: 1px solid var(--line); backdrop-filter: blur(16px); }
  .mobile-nav a { display: grid; place-content: center; gap: 3px; min-height: 52px; color: #c3b8c7; font-size: 10px; text-align: center; border-radius: 10px; }
  .mobile-nav a:active { color: #fff; background: rgba(255, 47, 146, .2); }
  .mobile-nav span { font-size: 19px; line-height: 1; color: var(--pink); }
}

/* Telas grandes / Smart TVs: área de leitura e foco para controle remoto. */
@media (min-width: 1600px) {
  body { font-size: 18px; }
  .topbar { height: 94px; padding-inline: 7vw; }
  .brand { font-size: 21px; }.brand-mark { width: 43px; height: 43px; }
  .nav { gap: 42px; font-size: 17px; }
  .btn { min-height: 56px; padding-inline: 28px; font-size: 17px; }.btn-small { min-height: 47px; }
  .hero { min-height: 900px; padding-inline: 9vw; }.hero p { font-size: 21px; max-width: 750px; }
  .section { max-width: 1920px; padding: 125px 7vw; }
  .section-heading h2, .feature-banner h2, .platform-copy h2, .launch h2 { font-size: clamp(44px, 4vw, 72px); }
  .movie-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 22px; }.movie-overlay h3 { font-size: 18px; }.movie-overlay p, .rating { font-size: 14px; }
  .channel-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; }.channel-card strong { font-size: 16px; }.channel-card small { font-size: 13px; }
  .feature-banner { max-width: 1800px; margin-inline: auto; }.feature-card { padding: 38px; }.feature-card h3 { font-size: 21px; }.feature-card p { font-size: 16px; }
  .live-player { max-width: 1280px; }.plans { max-width: 1180px; }.plan-card { padding: 32px; }
}

/* Player Overlay */
#playerOverlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.player-container {
  width: 100%;
  max-width: 1400px;
  height: 90vh;
  max-height: 900px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
}

.player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
}

.player-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

/* Botões de servidor */
.server-buttons {
  display: flex;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  flex-wrap: wrap;
}

.server-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d5cbd9;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.server-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 47, 146, 0.5);
  color: #fff;
}

.server-btn.active {
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 47, 146, 0.3);
}

/* Player wrapper com loading */
.player-wrapper {
  position: relative;
  flex: 1;
  background: #000;
}

.loading-message {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10;
  gap: 16px;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-message p {
  color: #d5cbd9;
  font-size: 14px;
  margin: 0;
}

.player-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.player-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.server-selector {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.server-selector:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 47, 146, 0.5);
}

.server-selector option {
  background: var(--bg-soft);
  color: #fff;
}

.close-player {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.close-player:hover {
  background: rgba(255, 47, 146, 0.2);
  transform: scale(1.05);
}

.player-container iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
}

.player-footer {
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--line);
  text-align: center;
}

.player-footer small {
  color: #9d93a2;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.play-btn {
  margin-top: 12px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(255, 47, 146, 0.3);
}

.play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 47, 146, 0.5);
}

@media (max-width: 768px) {
  .player-container {
    height: 95vh;
    max-height: none;
    border-radius: 0;
  }
  
  #playerOverlay {
    padding: 0;
  }
  
  .player-header {
    padding: 16px 18px;
  }
}

/* Notificações */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 16px 24px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.notification-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.notification-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Cards bloqueados */
.locked-card {
  position: relative;
  cursor: pointer;
  background: linear-gradient(145deg, #1a0d22, #0f0816);
  border: 2px dashed rgba(255, 47, 146, 0.3);
}

.locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(5, 2, 8, 0.85);
  backdrop-filter: blur(8px);
  text-align: center;
  padding: 20px;
}

.lock-icon {
  font-size: 48px;
  margin-bottom: 12px;
  animation: lockPulse 2s ease-in-out infinite;
}

.locked-overlay p {
  color: #d5cbd9;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.locked-card:hover {
  border-color: rgba(255, 47, 146, 0.6);
  transform: translateY(-4px);
}

.locked-card:hover .lock-icon {
  animation: lockShake 0.5s ease;
}

@keyframes lockPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes lockShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(255, 47, 146, 0.5); }
}

/* Créditos de streaming no footer */
.streaming-credits {
  grid-column: 1 / -1;
  text-align: center;
  margin: 8px 0 0;
  font-size: 11px;
  color: #827a87;
}

.streaming-credits strong {
  color: var(--pink);
  font-weight: 700;
}

@media (max-width: 680px) {
  .notification {
    top: auto;
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: calc(100% - 40px);
  }
}

/* Estatísticas do catálogo */
.catalog-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(255, 47, 146, 0.1), rgba(180, 41, 255, 0.1));
  border-radius: 12px;
  border: 1px solid rgba(255, 47, 146, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 12px;
  color: #9d93a2;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.catalog-preview {
  text-align: center;
  padding: 12px 20px;
  background: rgba(255, 47, 146, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 47, 146, 0.2);
  color: #d5cbd9;
}

.catalog-preview strong {
  color: #fff;
  font-weight: 700;
}

.catalog-preview a {
  color: var(--pink);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.catalog-preview a:hover {
  color: var(--pink-2);
}

.live-tv-note { color: var(--muted); margin: -18px 0 24px; }
.tv-actions { display:flex; gap:10px; }.channel-search,.channel-source { min-width: 190px; padding: 12px 15px; color: #fff; background: #180c20; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; font: inherit; }.channel-search { min-width: 250px; }.channel-source option { color:#fff; background:#180c20; }.favorite-filter,.channel-group,.live-player-actions button { padding:10px 13px; color:#fff; cursor:pointer; white-space:nowrap; background:#180c20; border:1px solid rgba(255,255,255,.18); border-radius:9px; font:inherit; }.favorite-filter.active,.channel-group.active { color:#170710; background:var(--pink); border-color:var(--pink); }
.channel-search:focus { outline: 2px solid var(--pink); outline-offset: 2px; }
.channel-groups { display:flex; gap:8px; overflow-x:auto; padding:0 0 18px; scrollbar-width:thin; }
.channel-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.channel-card { position:relative; overflow: hidden; padding: 0; color: #fff; text-align: left; cursor: pointer; background: #180c20; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; transition: transform .2s, border-color .2s; }
.channel-card:hover { transform: translateY(-3px); border-color: var(--pink); }
.channel-card img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: contain; background: #100714; }
.channel-card span { display: block; padding: 10px; }
.channel-card strong, .channel-card small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.channel-card small { margin-top: 3px; color: var(--muted); }
.channel-favorite { position:absolute; top:7px; right:7px; width:32px; height:32px; padding:0; color:#fff; cursor:pointer; font-size:22px; line-height:1; background:rgba(10,5,14,.78); border:0; border-radius:50%; }.channel-favorite:hover { color:var(--pink); }
.live-player { max-width: 960px; margin: 0 auto 28px; overflow: hidden; background: #09050c; border: 1px solid rgba(255,47,146,.35); border-radius: 12px; }
.live-player-header { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 12px 16px; }.live-player-header strong { display:block; margin-top:3px; }.live-label { color:var(--pink); font-size:11px; font-weight:800; letter-spacing:1px; }.live-player-actions { display:flex; gap:8px; }
.close-live-player { padding: 7px 11px; color: #fff; cursor: pointer; background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: 7px; }
.live-player video { display: block; width: 100%; max-height: 540px; background: #000; }

.plans { display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:16px; max-width:980px; margin:32px auto 24px; text-align:left; }.plan-card { position:relative; padding:25px; background:rgba(20,10,28,.78); border:1px solid rgba(255,255,255,.15); border-radius:14px; }.plan-card.featured,.plan-card.selected { border-color:var(--pink); box-shadow:0 0 28px rgba(255,47,146,.2); }.plan-card h3 { margin:0; font-size:20px; }.plan-card p:not(.plan-price) { min-height:24px; color:var(--muted); }.plan-price { margin:17px 0 5px; font-size:35px; font-weight:900; }.plan-price small { font-size:14px; color:var(--muted); font-weight:600; }.plan-card button { width:100%; padding:12px; color:#160814; cursor:pointer; font:inherit; font-weight:800; background:var(--pink); border:0; border-radius:8px; }.plan-badge { position:absolute; top:-11px; right:16px; padding:5px 9px; color:#160814; font-size:10px; font-weight:900; letter-spacing:.5px; background:var(--pink); border-radius:20px; }.checkout-form { max-width:530px; margin:0 auto 12px; }

@media (max-width: 680px) {
  .section.live-tv { padding-inline: 16px; }.tv-actions { width:100%; }.channel-search { width: 100%; min-width: 0; }.channel-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }.live-player { margin-inline:0; }.live-player-header { align-items:flex-start; }.live-player-actions button { padding:8px 9px; font-size:12px; }
  .plans { grid-template-columns:1fr; gap:13px; }.plan-card { padding:20px; }.plan-card p:not(.plan-price) { min-height:0; }.checkout-form { display:block; }.checkout-form input,.checkout-form button { width:100%; margin:5px 0; }
  .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .catalog-stats {
    gap: 16px;
    padding: 12px 16px;
  }
  
  .stat-number {
    font-size: 22px;
  }
  
  .stat-label {
    font-size: 10px;
  }
  
  .stat-divider {
    height: 30px;
  }
}
