body.landing {
  font-family: "Arial", sans-serif;
  background: #fefdfb;
  color: #2d2d2d;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  max-width: 600px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav li {
  margin: 0.5rem 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav a:hover {
  color: #0077cc;
}

.lm-emoji {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lm-emoji img {
  padding-right: 3px;
  width: 27px;
  height: 27px;
  object-fit: contain;
  vertical-align: middle;
}

.not-equal-sign {
  font-weight: 600;
  font-size: 1.05rem;
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 60px;
  background-color: #ffd42f;
  color: #0a5021;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.2s ease;
}

.floating-btn:hover {
  transform: scale(1.05);
}

.sweep-link {
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  color: #000000;
  position: relative;
  display: inline-block;
  background: linear-gradient(
    90deg,
    #000000 0%,
    #000000 40%,
    #ff0000 45%,
    #ff8800 50%,
    #ffff00 55%,
    #00ff00 60%,
    #0088ff 65%,
    #0000ff 70%,
    #8800ff 75%,
    #ff00ff 80%,
    #ff0088 85%,
    #ff0000 90%,
    #000000 95%,
    #000000 100%
  );
  background-size: 250% 100%;
  background-position: 0% 0%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.5s ease;
}

.sweep-link:hover {
  background-position: 100% 0%;
}
