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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url("/images/CosmereBackground.jpg") center/cover no-repeat;
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

header {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  padding: 2rem 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

header h1 {
  color: #f0e68c;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

#quiz-container {
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

#question {
  color: #d4af37;
  margin-bottom: 1.5rem;
}

#options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

button {
  background: linear-gradient(45deg, #ffcc00, #ff9900);
  color: #111;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  transform: scale(1.05);
}

.hidden {
  display: none;
}

#result {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  color: #ffd700;
}

footer {
  padding: 1rem;
  background: rgba(255,255,255,0.05);
}

.back-link {
  color: #ddd;
  text-decoration: none;
}

.back-link:hover {
  color: #fff;
  text-decoration: underline;
}
