/* ===== HOMEPAGE FULL-SCREEN CARD WALL ===== */

.home-bg {
  margin: 0;
  padding: 0;
  background: #000;
  overflow: hidden;
  position: relative;
  height: 100vh;
  width: 100vw;
}

/* Rows container */
.card-rows {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* Each row */
.row {
  display: flex;
  gap: 40px;
  position: absolute;
  width: 200%;
  left: -50%;
}

.row img {
  width: 120px;
  height: 120px;
  opacity: 0.22;
  transform: rotate(20deg);
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.2));
}

/* Position rows vertically */
.r1 { top: 5%; }
.r2 { top: 30%; }
.r3 { top: 55%; }
.r4 { top: 80%; }

/* Infinite slide animations */
@keyframes slide-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0%); }
}

@keyframes slide-left {
  from { transform: translateX(0%); }
  to   { transform: translateX(-50%); }
}

/* Apply animations */
.r1 { animation: slide-right 14s linear infinite; }
.r2 { animation: slide-left 16s linear infinite; }
.r3 { animation: slide-right 13s linear infinite; }
.r4 { animation: slide-left 15s linear infinite; }

/* Center foreground content */
.content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.content h1 {
  font-size: 60px;
  margin-bottom: 20px;
  letter-spacing: 6px;
  font-weight: 900;
}

.play-btn {
  background: white;
  color: black;
  padding: 14px 40px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 0 25px white;
}
