body {
  font-family: Arial, sans-serif;
  background: url("skibidi-toilet-bg.png") no-repeat center center fixed;
  background-size: cover;
  color: #00ffcc;
  text-align: center;
  padding: 40px;
  min-height: 100vh;
  position: relative;
}
.container {
  max-width: 820px;
  margin: auto;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
}
h1 {
  font-size: 3em;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
  margin-top: 0;
}
.card {
  background: rgba(255,255,255,0.06);
  padding: 18px;
  border-radius: 12px;
  margin: 10px auto 18px;
}
input {
  padding: 12px;
  width: 60%;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.4);
  color: #eafff7;
}
button {
  padding: 12px 18px;
  margin-left: 10px;
  background-color: #00ffcc;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
button:hover {
  background-color: #00cc99;
}
#result, #memeResult {
  margin-top: 16px;
  font-size: 1.2em;
  color: #ffff99;
}
.product {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 10px;
}
.note {
  color: #bfeee4;
  font-size: 0.9em;
}
.donate a {
  color: #ffd4ff;
  text-decoration: underline;
}
.easter-egg {
  position: absolute;
  font-size: 1.1em;
  color: #ff00ff;
  opacity: 0.18;
  animation: blink 5s infinite alternate;
  pointer-events: none;
}
@keyframes blink {
  from { opacity: 0.08; }
  to { opacity: 0.5; }
}
