* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: black;
  color: white;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  z-index: 20;
}

.logo {
  width: 110px;
  filter: invert(1);
}

.nav a {
  color: white;
  margin-left: 30px;
  text-decoration: none;
}

/* TEXT WALL (FULL COVERAGE) */
.text-wall {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.row {
  white-space: nowrap;
  font-size: 5vw;
  color: rgba(255,255,255,0.04);
}

/* SCENE */
.scene {
  height: 200vh;
  position: relative;
  z-index: 2;
}

.hero-text {
  position: absolute;
  top: 50vh;
  left: 8%;
  transform: translateY(-50%);
}

.hero-text h1 {
  font-size: 4vw;
}

/* EMOJIS */
.emoji-row {
  position: absolute;
  top: 65vh;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 40px;            /* reduced gap */
  width: 100%;
  max-width: 1200px;   /* prevents overflow */
  padding: 0 20px;
}

.emoji {
  width: 160px;   /* smaller, balanced */
  height: auto;

  cursor: pointer;
  will-change: transform;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .emoji {
    width: 120px;
  }
}

@media (max-width: 768px) {
  .emoji {
    width: 90px;
  }

  .emoji-row {
    gap: 20px;
  }
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.whatsapp-float img {
  width: 40px;
}