/* ========== IMPORTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Nunito:wght@400;700;900&display=swap');

/* ========== BASE ========== */
body {
  margin: 0;
  padding: 20px 20px 0;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  min-height: 100vh;
  font-family: 'Nunito', sans-serif;
  color: #f0f0f0;
  overflow-x: hidden;
}

/* ========== HEADINGS ========== */
h1 {
  font-family: 'Bangers', cursive;
  font-size: 4rem;
  letter-spacing: 4px;
  color: #fff;
  text-shadow:
    0 0 10px #ff0055,
    0 0 30px #ff0055,
    0 0 60px #ff0055;
  animation: pulse-glow 2s ease-in-out infinite alternate;
  margin-bottom: 0.2rem;
}

h2 {
  font-family: 'Bangers', cursive;
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: #ffcc00;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.6);
}

@keyframes pulse-glow {
  from { text-shadow: 0 0 8px #ff0055, 0 0 20px #ff0055; }
  to   { text-shadow: 0 0 20px #ff0055, 0 0 60px #ff0055, 0 0 100px #7289da; }
}

/* ========== LINKS ========== */
a {
  color: #7289da;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
a:hover { color: #ff0055; text-decoration: underline; }

/* ========== STATUS TEXT ========== */
p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ========== QUIZ CONTAINER ========== */
.brainrot-quiz-container {
  font-family: 'Nunito', sans-serif;
  max-width: 620px;
  margin: 40px auto;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  border: 3px solid #7289da;
  box-shadow: 0 0 25px rgba(114, 137, 218, 0.6), 0 0 60px rgba(255, 0, 85, 0.15);
}

.brainrot-header {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 22px;
  color: #ff0055;
  font-family: 'Bangers', cursive;
  font-size: 2rem;
}

.question-block {
  background-color: #2c2c2c;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 10px;
  border-left: 5px solid #7289da;
  transition: border-left-color 0.2s;
}
.question-block:hover { border-left-color: #ff0055; }

.question-text {
  font-weight: 700;
  font-size: 1.05em;
  margin-bottom: 10px;
  display: block;
}

.options label {
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
  font-size: 1em;
}

input[type="radio"] {
  margin-right: 5px;
  transform: scale(1.2);
  accent-color: #7289da;
}

button#submit-quiz {
  background: linear-gradient(90deg, #ff0055, #7289da);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  margin-top: 14px;
  letter-spacing: 1px;
  transition: transform 0.2s, box-shadow 0.2s;
}
button#submit-quiz:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.7);
}

#result-area {
  margin-top: 20px;
  padding: 18px;
  text-align: center;
  font-weight: 900;
  font-size: 1.3em;
  border-radius: 10px;
  display: none;
  animation: pop-in 0.3s ease;
}
@keyframes pop-in {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.win  { background-color: #4caf50; color: white; }
.mid  { background-color: #ff9800; color: black; }
.fail { background-color: #f44336; color: white; }

/* ========== HONORS LIST ========== */
.honors-section {
  margin: 30px auto 10px;
  max-width: 480px;
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  border: 2px solid #ffcc00;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
  padding: 24px 32px 28px;
  text-align: center;
}

.honors-section h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.honors-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.honors-section ul li {
  padding: 6px 0;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  cursor: default;
  transition: color 0.2s;
}
.honors-section ul li::before {
  content: "\2022\00a0";
}
.honors-section ul li:hover {
  color: #ffcc00;
}

.honors-caption {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
}

/* ========== FOOTER ========== */
footer {
  margin-top: 40px;
  text-align: center;
}
.baked {
  width: 100%;
  margin: 0;
  padding: 0;
}
.img-baked {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== BADGE ========== */
.badge-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 0;
}
.badge {
  background: rgba(114, 137, 218, 0.2);
  border: 1px solid #7289da;
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7289da;
  letter-spacing: 0.5px;
}

/* ========== DIVIDER ========== */
.fancy-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7289da, #ff0055, #7289da, transparent);
  margin: 28px auto;
  max-width: 500px;
  border-radius: 2px;
}
