body {
  margin: 0;
  padding: 8px;
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  color: #111;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}


.top-box,
.bottom-box {
  width: 100%;
  max-width: 280px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #f6f6f6;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: none;
}


@supports (backdrop-filter: blur(6px)) {
  .top-box,
  .bottom-box {
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.4);
  }
}

h1 {
  font-size: 1rem;
  margin: 6px 0;
  font-weight: 600;
  text-transform: uppercase;
}

p {
  font-size: 0.85rem;
  margin: 5px 0 10px;
}

.steps {
  background: rgba(255,255,255,0.12);
  padding: 6px;
  border-radius: 6px;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.85rem;
}

.gif-container {
  background: #fff;
  padding: 4px;
  border-radius: 6px;
  margin-top: 8px;
}

img {
  width: 100%;
  border-radius: 5px;
}

/* Pointer */
.pointer-wave {
  position: fixed;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,0,0,0.6);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: 9998;
}

#finger-pointer {
  position: fixed;
  top: 8px;
  right: 12px;
  width: 48px;
  height: 48px;
  z-index: 9999;
  animation: bounce 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
