* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Georgia', serif;
  background: radial-gradient(circle at top, #2a1440 0%, #0b0514 60%, #05010a 100%);
  color: #f3eaff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.oracle-box {
  width: 420px;
  padding: 35px;
  background: rgba(20, 10, 35, 0.9);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(138, 43, 226, 0.7);
  backdrop-filter: blur(12px);
  text-align: center;
  animation: fadeIn 0.8s ease;
}

h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-shadow: 0 0 18px rgba(200, 150, 255, 0.6);
}

select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: #1b1029;
  color: white;
  margin-bottom: 20px;
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.tabs button {
  flex: 1;
  padding: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #2a1440, #3b1c5a);
  color: #fff;
  transition: all 0.25s ease;
}

.tabs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px #c77dff;
}

.active {
  background: linear-gradient(135deg, #ff3c88, #b100ff);
}

.reading {
  min-height: 110px;
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 15px;
  background: rgba(10, 5, 20, 0.8);
  border-radius: 12px;
}

#paywall {
  margin-top: 20px;
}

#paywall button {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #ff3c88, #b100ff);
  color: white;
  transition: all 0.25s ease;
}

#paywall button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 80, 180, 0.8);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}.reading h2 {
  margin-bottom: 10px;
  color: #ff9dff;
}