body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: #050510;
  color: white;
  font-family: 'Orbitron', sans-serif;
}

/* 🧭 MENU */
.menu {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2vh 4vw;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  z-index: 3;

  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

.logo {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(14px, 2vw, 26px);
}

.menu a {
  margin-left: 2vw;
  color: #aaa;
  font-size: clamp(12px, 1.5vw, 18px);
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ✨ HOVER MENU NEON */
.menu a:hover {
  color: #fff;
  transform: scale(1.05);

  text-shadow:
    0 0 5px rgba(255,255,255,0.8),
    0 0 10px rgba(0,255,242,0.8),
    0 0 20px rgba(0,255,242,0.6),
    0 0 40px rgba(0,255,242,0.4);
}

/* 🎮 CONTENT */
.content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;

  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  padding: 4vh 4vw;
  border-radius: 2vw;
  width: min(90vw, 700px);
}

.content h1 {
  font-family: 'Press Start 2P', cursive;
  font-size: clamp(28px, 6vw, 70px);
  text-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.content p {
  margin-top: 2vh;
  font-size: clamp(14px, 2.2vw, 24px);
  line-height: 1.6;
}

.content span {
  color: #ccc;
}

.download {
  margin-top: 2vh;
  opacity: 0.6;
}

/* 📥 FOOTER */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 3;

  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  padding: 1vh 0;
}

.footer img {
  height: clamp(40px, 6vw, 65px);
  margin: 1vh 1vw;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.footer img:hover {
  transform: scale(1.15);
}

/* 🟪 GRID PIXEL */
.pixels {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;

  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  grid-template-rows: repeat(20, 1fr);

  gap: 2px;
}

.pixel {
  width: 100%;
  aspect-ratio: 1 / 1; /* 🔥 garante quadrado */

  background: rgba(255,255,255,0.05);
  animation: glow 4s infinite alternate;
}

@keyframes glow {
  from { background: rgba(255,255,255,0.03); }
  to   { background: rgba(255,255,255,0.08); }
}

/* 🐾 PETS */
.pets {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.pet {
  position: absolute;

  transform: translate(-50%, -50%) scale(1);
  transition:
    transform 0.5s ease,
    filter 0.4s ease;

  width: clamp(80px, 12vw, 200px);

  filter: drop-shadow(0 0 6px rgba(255,255,255,0.08));

  pointer-events: auto;
}

/* ✨ HOVER SUAVE */
.pet:hover {
  transform: translate(-50%, -50%) scale(1.12);

  filter:
    drop-shadow(0 0 6px rgba(255,255,255,0.25))
    drop-shadow(0 0 12px rgba(255,255,255,0.15));
}

.pixel {
  box-shadow: 0 0 4px rgba(255,255,255,0.05);
}

.logo {
  text-decoration: none;
  color: white;
}

.logo:hover {
  text-shadow: 0 0 10px rgba(0,255,242,0.6);
}