* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
}

/* BODY */
body {
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #0F172A, #020617 10%);
  color: white;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 420px;
  padding: 40px 18px;
  text-align: center;
}

/* 🔥 BRAND PRINCIPAL */
.brand {
  margin-bottom: 28px;
}

/* LAYOUT HORIZONTAL */
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;  
  padding: 14px;
  border-radius: 16px; 
}

/* LOGO */
.logo {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* TEXTO */
.title-group {
  display: flex;
  flex-direction: column;
}

/* LINHA PRINCIPAL */
.brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* TITULO */
.brand-row h1 {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
}

.brand-row h1 span {
  color: #E50914;
}

/* BADGE OFICIAL */
.official-badge {
  background: #22c55e;
  color: #062b14;

  font-size: 10px;
  padding: 3px 6px;
  border-radius: 5px;

  font-weight: 800;
  letter-spacing: 0.5px;
}

.tagline {
  font-size: 0.85rem;
  margin-top: 2px;
  color: rgba(255,255,255,0.7);

  text-align: left;
  align-self: flex-start;
}

/* DOWNLOADS */
.download-counter {
  margin-top: 6px;

  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* SVG */
.download-counter svg {
  color: #03ff63;
}

/* CARROSSEL */
.carousel {
  overflow: hidden;
  margin-bottom: 25px;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.track {
  display: flex;
  gap: 10px;
  animation: scroll 60s linear infinite; /* mais lento */
  width: max-content; /* IMPORTANTE */
}

.track img {
  width: 100px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  transition: 0.3s;
}

.track img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  100% {
    transform: translateX(-50%);
  }
}

/* CARDS */
.cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 🔥 CARD NOVO ESTILO (IMAGEM + BASE SÓLIDA) */
.card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #0B1220;
  transition: transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* IMAGEM */
.card img {
  width: 100%;
  display: block;
  object-fit: cover;
  animation: liveImage 8s infinite alternate ease-in-out;
}

@keyframes liveImage {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.card-bar {
  background: #111C33; /* base elegante */
  padding: 14px 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 14px;
  font-weight: 600;

  color: #E5E7EB;

  border-top: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s ease;
}

/* hover mais vivo */
.card:hover .card-bar {
  background: linear-gradient(135deg, #E50914, #FF2E2E);
  color: #fff;
}

/* clique */
.card:active {
  transform: scale(0.97);
}
/* DOWNLOAD BTN */
.download-btn {
  margin-top: 20px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.download-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.03);
}

.download-btn img {
  width: 22px;
  border-radius: 6px;
}

.download-btn span {
  font-size: 14px;
}

/* BACKGROUND GRID */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 170px;
  gap: 6px;

  padding: 8px;

  opacity: 0.22;
  filter: blur(1.2px) brightness(0.55);

  transform: scale(1.05);
}

.bg-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  animation: floatTile 12s infinite alternate ease-in-out;
}

@keyframes floatTile {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* OVERLAY */
.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.streaming-line {
  margin: 18px 0 22px;
  text-align: center;
}

.streaming-line p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  letter-spacing: 0.4px;
}

.streaming-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.streaming-icons img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: 0.2s ease;
  border-radius: 5px;
}

.streaming-icons img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* CONTAINER */
.stats {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 12px 0 28px;
  flex-wrap: wrap;

  padding: 10px 14px;

  

  backdrop-filter: blur(6px);
  border-radius: 10px;

  border: 1px solid rgba(255,255,255,0.05);
}

/* ITEM */
.stat {
  text-align: center;
  min-width: 70px;
  position: relative;
}

/* DIVISOR SUAVE ENTRE ITENS */
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

/* NÚMERO */
.counter {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;

  letter-spacing: 0.5px;

  /* glow leve */
  text-shadow: 0 0 8px rgba(255,255,255,0.15);

  display: block;
}

/* TEXTO */
.stat p {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
  letter-spacing: 0.4px;
}

/* ANIMAÇÃO FINAL (quando termina) */
.counter.done {
  animation: glow 0.6s ease;
}

@keyframes glow {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }
  50% {
    transform: scale(1.08);
    text-shadow: 0 0 12px rgba(255,255,255,0.4);
  }
  100% {
    transform: scale(1);
  }
}