body {
  margin: 0;
  padding: 20px;
  background: radial-gradient(circle at top, #2b1200, #0b0502);
  font-family: Arial, sans-serif;
  color: white;
}

.container {
  max-width: 550px;
  margin: auto;
}

.hero {
  text-align: center;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0;
  color: #ffb347;
  font-size: 34px;
  letter-spacing: 2px;
}

.hero h2 {
  margin: 5px 0 10px 0;
  color: #ffcc66;
  font-size: 26px;
}

.hero p {
  color: #f3d4a7;
  margin: 0;
}

.live-banner {
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 179, 71, 0.25);
  border-radius: 16px;
  padding: 16px;
  margin: 20px 0;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.15);
}

.live-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5a36;
  box-shadow: 0 0 10px #ff5a36;
}

#joinLiveBtn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  color: #1a0b03;
  font-weight: bold;
  cursor: pointer;
}

.game-card {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: white;
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}

.game-card:hover {
  transform: translateY(-2px);
}

.card-icon {
  font-size: 30px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
}

.card-text h3 {
  margin: 0 0 6px 0;
  font-size: 22px;
}

.card-text p {
  margin: 0;
  color: #f0d7b3;
  font-size: 14px;
}

.wheel-card {
  background: linear-gradient(135deg, rgba(255,140,0,0.20), rgba(80,20,0,0.95));
  border: 1px solid rgba(255,179,71,0.20);
}

.asmr-card {
  background: linear-gradient(135deg, rgba(180,90,255,0.16), rgba(35,10,30,0.95));
  border: 1px solid rgba(220,160,255,0.16);
}

.story-card {
  background: linear-gradient(135deg, rgba(90,140,255,0.14), rgba(20,20,40,0.95));
  border: 1px solid rgba(140,180,255,0.16);
}

input, textarea {
  box-sizing:border-box;
}
