* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins, sans-serif;

  background: #090c18;

  color: #fff;

  overflow-x: hidden;
}

.bg-glow {
  position: fixed;

  width: 900px;
  height: 900px;

  left: 50%;
  top: -500px;

  transform: translateX(-50%);

  background: radial-gradient(circle, #4d63ff55 0%, transparent 70%);

  pointer-events: none;
}

.container {
  width: min(1200px, 92%);

  margin: auto;

  padding: 45px 0;
}

header {
  text-align: center;

  margin-bottom: 45px;
}

.logo {
  width: 260px;

  margin-bottom: 18px;
}
.wall-logo {
  width: auto;
  height: 40px;
  margin-top: 18px;
}

header h1 {
  font-size: 42px;

  margin-bottom: 8px;
}

header p {
  color: #aab3d8;

  font-size: 18px;
}

.apps {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

/* CARD */

.card {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  padding: 24px;

  border-radius: 24px;

  background: linear-gradient(180deg, #2b2f50, #22253f);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);

  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.card-left {
  display: flex;

  align-items: center;

  gap: 25px;

  flex: 1;
}

.icon {
  width: 110px;

  height: 110px;

  border-radius: 24px;

  object-fit: cover;

  background: #ddd;

  flex-shrink: 0;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.info {
  flex: 1;
}

.info h2 {
  font-size: 34px;

  margin-bottom: 6px;
}

.info p {
  color: #b9c0e3;

  font-size: 17px;

  margin-bottom: 14px;
}

.reward {
  display: flex;

  align-items: center;

  gap: 12px;
}

.reward img {
  width: 42px;

  height: 42px;

  animation: coin 2.5s infinite ease-in-out;

  filter: drop-shadow(0 0 10px rgba(255, 200, 0, 0.4));
}

.reward span {
  font-size: 32px;

  font-weight: 700;

  color: #ffb100;
}

.play {
  text-decoration: none;

  display: flex;

  justify-content: center;

  align-items: center;

  min-width: 230px;

  height: 72px;

  border-radius: 20px;

  font-size: 28px;

  font-weight: 700;

  color: white;

  background: linear-gradient(180deg, #6cff43, #2bb52a);

  box-shadow: 0 12px 30px rgba(70, 255, 70, 0.25);

  transition: 0.25s;
}

.play:hover {
  transform: translateY(-2px);

  box-shadow: 0 18px 40px rgba(70, 255, 70, 0.45);
}

@keyframes coin {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .container {
    width: 94%;
  }

  header {
    text-align: center;
  }

  header h1 {
    font-size: 28px;
  }

  header p {
    font-size: 16px;
  }

  .logo {
    width: 300px;
  }

  .card {
    flex-direction: column;

    align-items: stretch;

    padding: 20px;
  }

  .card-left {
    align-items: flex-start;
  }

  .icon {
    width: 95px;

    height: 95px;
  }

  .info h2 {
    font-size: 24px;
  }

  .info p {
    font-size: 15px;
  }

  .reward img {
    width: 36px;

    height: 36px;
  }

  .reward span {
    font-size: 28px;
  }

  .play {
    width: 100%;

    margin-top: 18px;

    height: 58px;

    font-size: 22px;
  }
}
