/* style.css — Sleazy Sex Quiz theme */

body {
  background-color: #111;
  color: #f1f1f1;
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

h1, h2, h3 {
  color: #ff0077;
  text-align: center;
}

a {
  color: #ff66a3;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container,
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.question-box,
.question-block {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 25px 30px;
  margin: 30px auto;
  max-width: 480px;
  text-align: left;
  box-shadow: 0 0 15px #ff0077;
}

.question-block h3 {
  color: #ff0077;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.2em;
}

.question-block div {
  display: flex;
  align-items: center;
  margin: 10px 0;
  gap: 12px;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 0;
  transform: scale(1.2);
}

label {
  font-weight: normal;
  margin: 0;
  line-height: 1.4;
}

button,
input[type="submit"] {
  background-color: #ff0077;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin: 25px auto 0;
  display: block;
}
button:hover,
input[type="submit"]:hover {
  background-color: #e6006e;
}

input[type="email"],
input[type="text"] {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #222;
  color: #fff;
  margin: 10px auto;
  display: block;
}

.email-block {
  margin-top: 40px;
}

.quiz-footer,
footer {
  text-align: center;
  margin-top: 30px;
  color: #777;
  font-size: 14px;
}

/* 🎯 Updated How It Works section */
.how-it-works {
  max-width: 600px;
  margin: 0 auto 10px;
  text-align: center;
  font-size: 0.95em;
  color: #ccc;
}
.how-it-works p {
  margin-bottom: 8px;
  font-weight: bold;
  color: white;
}
.how-it-works ul {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
  line-height: 1.6;
}

/* 🔥 Flickering fire icon */
@keyframes flicker {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.1); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

.fire-icon {
  display: inline-block;
  animation: flicker 1s infinite ease-in-out;
  transform-origin: center;
}

/* 🎉 Shared site header styles for all pages */
.site-header {
  background-color: #ff0077;
  padding: 30px 20px 20px;
  text-align: center;
  box-shadow: 0 0 20px #ff0077;
}

.site-header h1 {
  margin: 0;
  font-size: 2.5em;
  color: white;
  letter-spacing: 1px;
}

.site-header .emoji {
  font-size: 1.2em;
  margin: 0 4px;
}

.site-header .tagline {
  margin-top: 10px;
  color: #ffe6f2;
  font-size: 1.1em;
  font-style: italic;
}

/* 🍑 Flickering emoji icons in header */
@keyframes emoji-flicker {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

.emoji-flicker {
  display: inline-block;
  animation: emoji-flicker 1.4s infinite ease-in-out;
  transform-origin: center;
}
