body {
  margin: 0;
  font-family: 'Varela Round', sans-serif;
  background: linear-gradient(135deg, #ff3366, #ffcc33, #33ff99);
  color: #000;
  text-align: center;
  overflow-x: hidden;
}

h1 {
  font-family: 'Impact', sans-serif;
  font-size: 6rem;
  margin: 20px 0;
  color: #000;
  -webkit-text-stroke: 3px #fff;
  text-shadow: 5px 5px 0 #000, -5px -5px 0 #fff;
  transform: rotate(-3deg);
}

.subtitle {
  font-size: 2.2rem;
  margin: -20px 0 40px;
  color: #fff;
  text-shadow: 3px 3px 0 #000;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.brainrot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.card {
  background: rgba(255,255,255,0.85);
  border: 8px solid #000;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 10px 10px 0 #000;
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 15px 15px 0 #000;
}

.card::before {
  content: "STEAL ME 🥷";
  position: absolute;
  top: -10px;
  right: -60px;
  background: #ff0000;
  color: white;
  padding: 5px 60px;
  transform: rotate(45deg);
  font-weight: bold;
  font-size: 1.1rem;
}

.rarity {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 10px 0;
}

.common    { color: #888; }
.rare      { color: #00ff00; }
.epic      { color: #ff00ff; }
.mythic    { color: #ff6600; }
.secret    { color: #ffff00; background: #000; padding: 4px 12px; border-radius: 20px; }
.divine    { color: #00ffff; background: linear-gradient(90deg, #f00, #0f0, #00f); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-size: 1.6rem; }

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin: 15px 0;
  text-shadow: 2px 2px 0 #fff;
}

button {
  background: #000;
  color: #fff;
  border: 5px solid #fff;
  padding: 15px 40px;
  font-size: 1.6rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
  margin: 10px;
  transition: all 0.2s;
}

button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

.buy-btn    { background: #00ff00; color: #000; border-color: #000; }
.steal-btn  { background: #ff0000; border-color: #fff; }

.limited-title {
  font-size: 4rem;
  margin: 80px 0 30px;
}

.limited-text {
  font-size: 2.5rem;
  color: #000;
  text-shadow: 3px 3px #fff;
}

.rebirth-btn {
  font-size: 3rem;
  padding: 30px 80px;
  margin: 60px 0;
}

footer {
  margin: 80px 0 40px;
  font-size: 1.3rem;
  opacity: 0.9;
}