.quiz-container {
  width: 1920px;
  height: 1200px;
  /* min-height: 100vh; */
  background-image: url("../images/quiz-screen-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* min-height: 100vh; */
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
}

.quiz-question-header {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  gap: 15px;
  flex-wrap: wrap;
}

.quiz-symbol {
  background-image: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 300px;
  height: 300px;
  position: absolute;
  top: 130px;
  left: 255px;
  z-index: 10;
}

.question-number {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  padding: 20px 30px;
  border-radius: 15px;
  font-size: 32px;
  font-weight: bold;
  color: #000;
  border: 3px solid #000;
  transform: rotate(-1deg) skew(1deg, -0.5deg);
  position: relative;
}

.question-number::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 10px;
  z-index: -1;
}

.question-points {
  font-size: 32px;
  font-weight: bold;
  background: linear-gradient(135deg, #f39c12, #e67e22);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border: 3px solid #1a252f;
  padding: 10px;
  border-radius: 10px;
}

.current-score {
  font-size: 50px;
  font-weight: bold;
  background-color: #fff;
  color: #000;
  border: 3px solid #1a252f;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 200px;
}

.current-score,
.current-score ruby,
.current-score rt {
  font-family: "FGP-Marugothic", "Hiragino Sans", "Yu Gothic", "Meiryo",
    sans-serif !important;
}

.current-score rt {
  margin-bottom: 5px;
}

.game-timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.game-timer {
  position: relative;
  z-index: 2;
}

.game-timer canvas {
  background: transparent;
}

.time-left-text {
  font-size: 32px;
  font-weight: bold;
  color: #000;
}

.quiz-question {
  max-width: 1200px;
  margin-top: 120px;
  margin-bottom: 40px;
  border-radius: 15px;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  box-shadow: 2px rgba(0, 0, 0, 0.15);
  position: relative;
}

.question-text {
  justify-content: center;
  align-items: baseline;
  display: flex;
  background-color: #fff;
  padding: 30px 50px;
  border-radius: 20px;
  font-size: 36px;
  font-weight: bold;
  color: #000;
  text-align: center;
  border: 3px solid #1a252f;
  transform: none;
  position: relative;
  text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff,
    2px 2px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
    1px 1px 0 #fff;
  width: 920px;
  height: 300px;
  overflow-y: auto;
  align-items: center;
}

.quiz-options {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

.option-box {
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 280px;
  position: relative;
  transform: rotate(0deg) skew(0deg, 0deg);
  flex: 1;
  border: 30px solid transparent;
}

.option-box.option-a:hover,
.option-box.option-b:hover,
.option-box.option-c:hover {
  transform: translateY(-5px);
}

.option-box.option-a {
  background: #4cafa1;
}

.option-box.option-b {
  background: #edc235;
}

.option-box.option-c {
  background: #644d8b;
}

.option-box.correct {
  animation: correctPulse 0.6s ease-in-out;
  background: #3f9ad5;
}

.option-box.incorrect {
  animation: incorrectShake 0.6s ease-in-out;
  background: #cd524e !important;
}

.option-box.disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.option-box.disabled:hover {
  transform: inherit;
}

@keyframes correctPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes correctGlow {
  0% {
    box-shadow: 0 0 0 rgba(39, 174, 96, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(39, 174, 96, 0.8);
  }

  100% {
    box-shadow: 0 0 0 rgba(39, 174, 96, 0.4);
  }
}

@keyframes incorrectShake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

@keyframes incorrectGlow {
  0% {
    box-shadow: 0 0 0 rgba(231, 76, 60, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(231, 76, 60, 0.8);
  }

  100% {
    box-shadow: 0 0 0 rgba(231, 76, 60, 0.4);
  }
}

.option-label {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
}

.option-shapes {
  font-size: 35px;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  height: calc(1.2em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quiz-prompt {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.prompt-text {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .quiz-container {
    padding: 10px;
  }

  .quiz-question-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .quiz-options {
    flex-direction: column;
    gap: 20px;
  }

  .option-box {
    min-width: 250px;
    padding: 25px 30px;
  }

  .question-text {
    font-size: 24px;
    padding: 20px 30px;
  }

  .prompt-text {
    font-size: 28px;
  }

  .explanation-popup {
    top: 15%;
    left: 5%;
    max-width: 90%;
  }

  .explanation-result {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .result-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .result-text {
    font-size: 18px;
  }

  .result-points {
    font-size: 16px;
    padding: 4px 10px;
  }

  .explanation-text {
    padding: 20px;
    font-size: 18px;
  }

  .option-shapes {
    font-size: 40px;
  }
}

.explanation-popup {
  position: fixed;
  top: 20%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -100%);
  max-width: 600px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.explanation-popup.hidden {
  display: none;
}

.explanation-popup.show {
  transform: translate(-50%, 0);
}

.explanation-popup.hide {
  transform: translate(-50%, -100%);
}

.explanation-content {
  padding: 0;
  overflow: hidden;
  border: 8px solid #3f36be;
  border-radius: 20px;
  border: 8px solid #1d8fb4;
  position: relative;
}

.explanation-content::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  background: #415ab0;
  border-radius: 25px;
  z-index: -1;
}

.explanation-header {
  background: #00b0fb;
  color: #000;
  padding: 20px;
  text-align: center;
  position: relative;
}

.explanation-header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.explanation-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.result-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
  flex-shrink: 0;
}

.result-icon.correct {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.result-icon.correct span {
  border: 5px solid #fff;
  height: 40px;
  width: 40px;
  border-radius: 100%;
}

.result-icon.incorrect {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  position: relative;
}
.result-icon.incorrect::before,
.result-icon.incorrect::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 35px;
  height: 5px;
  background-color: white;
}

.result-icon.incorrect::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.result-icon.incorrect::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.result-text {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.explanation-header .explanation-title {
  color: #000;
}

.result-points {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  background: #edc235;
  padding: 5px 12px;
  border-radius: 20px;
  border: 2px solid rgba(241, 196, 15, 0.3);
}

.explanation-text {
  padding: 30px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  color: #000;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff,
    2px 2px 0 #fff; */
  position: relative;
  background: #fff;
  border-radius: 0 0 15px 15px;
}

.quiz-mascot {
  position: fixed;
  bottom: 20px;
  right: 0px;
  z-index: 4;
  animation: mascotBounce 2s ease-in-out infinite;
}

.mascot-img {
  width: 340px;
  height: 340px;
  object-fit: contain;
  transition: all 0.3s ease;
}

@keyframes mascotBounce {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .quiz-mascot {
    bottom: 15px;
    right: 15px;
  }

  .mascot-img {
    width: 100px;
    height: 100px;
  }

  .answer-notification {
    bottom: 135px;
    right: 15px;
  }

  .notification-content {
    padding: 15px 20px;
    min-width: 150px;
  }

  .notification-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .notification-text {
    font-size: 18px;
  }

  .notification-points {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .quiz-mascot {
    bottom: 10px;
    right: 10px;
  }

  .mascot-img {
    width: 80px;
    height: 80px;
  }

  .answer-notification {
    bottom: 110px;
    right: 10px;
  }

  .notification-content {
    padding: 12px 16px;
    min-width: 120px;
  }

  .notification-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .notification-text {
    font-size: 16px;
  }

  .notification-points {
    font-size: 14px;
  }
}

.result-screen,
.correct-answers-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.correct-answers-screen *,
.result-screen * {
  font-family: "FGP-Marugothic", "Hiragino Sans", "Yu Gothic", "Meiryo",
    sans-serif !important;
}

.correct-answers-screen *:has(span.english-width),
.correct-answers-screen *:has(span.english-width) *,
.result-screen *:has(span.english-width),
.result-screen *:has(span.english-width) * {
  font-family: "Kosugi Maru", "Noto Sans JP", "Hiragino Maru Gothic ProN",
    "Yu Gothic", "Meiryo", "Noto Sans CJK JP", sans-serif !important;
}

.result-screen.hidden,
.correct-answers-screen.hidden {
  display: none;
}

.result-container,
.correct-answers-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  border: 3px solid #000000;
  transform: none;
}

.result-container rt,
.correct-answers-screen rt {
  margin-bottom: 5px;
}

#session-step4 .result-container {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  max-width: none;
}

#session-step4 .result-container rt {
  margin-bottom: 1px;
}

.result-header,
.correct-answers-header {
  text-align: center;
  margin-bottom: 30px;
}

.result-header h2,
.correct-answers-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: #000000;
  margin: 0;
}

.score-summary,
.final-score-summary {
  font-size: 25px;
  font-weight: bold;
}

.score-summary *,
.final-score-summary * {
  font-family: "Kosugi Maru", "Noto Sans JP", "Hiragino Maru Gothic ProN",
    "Yu Gothic", "Meiryo", "Noto Sans CJK JP", sans-serif !important;
}

.score-summary #correct-count-label-text,
.score-summary #earned-points-label-text,
.final-score-summary #final-correct-count-label,
.final-score-summary #final-earned-points-label {
  font-weight: normal !important;
}

.answers-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  max-height: 60vh;
  overflow-y: auto;
  padding: 10px;
}

.answer-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  border: 3px solid #000000;
  position: relative;
  text-align: left;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.answer-item.correct {
  border-color: #27ae60;
  background: linear-gradient(135deg, #d5f4e6 0%, #ffffff 100%);
  border: 3px solid #27ae60;
}

.answer-item.incorrect {
  border-color: #e74c3c;
  background: linear-gradient(135deg, #fadbd8 0%, #ffffff 100%);
  border: 3px solid #e74c3c;
}

.answer-question {
  font-size: 22px;
  font-weight: 900;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.4;
  max-width: 430px;
  display: flex;
  align-items: baseline;
}

.answer-question span:first-child,
.answer-text span:first-child {
  white-space: nowrap;
}

.answer-question .japan-width,
.answer-text .japan-width {
  min-width: 40px;
}

.answer-text .english-width {
  margin-left: 34px !important;
}

.answer-question span {
  margin-left: 5px;
}
.answer-text span:first-child {
  margin-left: 30px;
  margin-right: 5px;
}

.answer-text {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
  margin-top: 5px;
}

.answer-points {
  margin-left: 32px;
}

.answer-mark {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.answer-mark span {
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
  color: white;
  position: relative;
}

.answer-mark.correct {
  background: #27ae60;
}
.answer-mark.correct span {
  border: 5px solid #fff;
  height: 45px;
  width: 45px;
  border-radius: 100%;
}

.answer-mark.incorrect {
  background: #e74c3c;
}

.answer-mark.incorrect::before,
.answer-mark.incorrect::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 35px;
  height: 5px;
  background-color: white;
}

.answer-mark.incorrect::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.answer-mark.incorrect::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.detail-btn {
  background: #8e6c32;
  color: white;
  border: 1px solid #000000;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  margin-top: auto;
  transition: all 0.3s ease;
}

.detail-btn:hover {
  background: #3f9ad5;
  border-color: #3f9ad5;
  transform: translateY(-2px);
}

.result-actions,
.correct-answers-actions {
  text-align: center;
}

.see-answers-btn,
.next-btn {
  background: #4cafa1;
  color: white;
  border: 1px solid #000000;
  padding: 20px 40px;
  border-radius: 999px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.result-mascot {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.result-mascot-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  animation: mascotBounce 2s ease-in-out infinite;
}

.detail-explanation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.detail-explanation-popup.hidden {
  display: none;
}

.detail-explanation-content {
  background: #3f9ad5;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border: 3px solid #1a252f;
  transform: rotate(-0.5deg) skew(-0.3deg, 0.2deg);
  position: relative;
}

.detail-explanation-content::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: white;
  border-radius: 15px;
  z-index: -1;
}

.detail-explanation-header {
  border-bottom: 3px solid #3f9ad5;
  color: #000;
  padding: 20px;
  border-radius: 20px 20px 0 0;
  text-align: center;
}

.detail-explanation-header h3 {
  margin: 0;
  font-size: 24px;
}

.close-detail-btn {
  background: #3f9ad5;
  border: 1px solid #000;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 999px;
  transition: all 0.3s ease;
  position: relative;
}

.close-detail-btn:hover {
  transform: translateY(-2px);
}

.detail-explanation-text {
  padding: 30px;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  flex: 1;
}

.detail-explanation-actions {
  padding: 20px 30px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .result-container,
  .correct-answers-container {
    padding: 20px;
    margin: 10px;
  }

  .result-header h2,
  .correct-answers-header h2 {
    font-size: 28px;
  }

  .answers-list {
    grid-template-columns: 1fr;
    gap: 15px;
    max-height: 70vh;
  }

  .answer-item {
    padding: 15px;
  }

  .answer-question {
    font-size: 16px;
  }

  .answer-text {
    font-size: 14px;
  }

  .see-answers-btn,
  .next-btn {
    padding: 15px 30px;
    font-size: 20px;
  }

  .result-mascot {
    position: static;
    text-align: center;
    margin-top: 20px;
  }

  .result-mascot-img {
    width: 150px;
    height: 150px;
  }

  .detail-explanation-content {
    margin: 10px;
    max-height: 90vh;
  }

  .detail-explanation-text {
    padding: 20px;
    font-size: 16px;
  }
}

.answer-notification {
  position: fixed;
  bottom: 440px;
  right: 20px;
  z-index: 9999;
  animation: notificationSlideIn 0.5s ease-out;
  pointer-events: none;
}

.answer-notification.hidden {
  display: none;
}

.notification-content {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border-radius: 20px;
  padding: 20px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 3px solid #ddd;
  text-align: center;
  min-width: 200px;
  position: relative;
}

.notification-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 30px;
  font-weight: bold;
  color: white;
}

.notification-icon.correct {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border: 3px solid #1e8449;
}

.notification-icon.incorrect {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: 3px solid #a93226;
}

.notification-text {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2c3e50;
}

.notification-points {
  font-size: 20px;
  font-weight: bold;
  color: #27ae60;
}

@keyframes notificationSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.end-game-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  font-family: Arial, sans-serif;
}

.end-game-popup .message-text ruby {
  letter-spacing: -3px;
}

.end-game-popup.hidden {
  display: none;
}

.notification-board {
  background: linear-gradient(135deg, #ff8c42, #ff6b35, #ff8c42);
  border: 20px solid #b0b0b0;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3), 0 0 0 8px #d0d0d0, 0 0 0 16px #e0e0e0;
  width: 700px;
  min-height: 550px;
  position: relative;
  animation: boardSlideIn 0.8s ease-out;
  overflow: hidden;
}

.board-header {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  padding: 30px;
  text-align: center;
  border-bottom: 6px solid #e55a2b;
  position: relative;
}

.board-title {
  font-size: 64px;
  font-weight: bold;
  color: #000000;
  text-shadow: 3px 3px 0px #ffffff;
  letter-spacing: 8px;
  font-family: "Arial Black", Arial, sans-serif;
}

.board-content {
  padding: 50px;
  text-align: center;
}

.mascot-center {
  margin-bottom: 40px;
}

.center-mascot {
  width: 320px;
  height: 320px;
  object-fit: contain;
  animation: mascotBounce 1.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.center-mascot:hover {
  transform: scale(1.05);
}

.board-message {
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  border: 6px solid #b0b0b0;
  border-radius: 15px;
  padding: 40px;
  position: relative;
}

.message-text {
  font-size: 42px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px #ffffff, 4px 4px 0px #ffffff;
  letter-spacing: 3px;
}

.board-message .message-text rt {
  font-family: "FGP-Marugothic", "Hiragino Sans", "Yu Gothic", "Meiryo",
    sans-serif !important;
  margin-bottom: 5px;
}

.board-message .message-subtitle rt {
  font-family: "FGP-Marugothic", "Hiragino Sans", "Yu Gothic", "Meiryo",
    sans-serif !important;
  margin-bottom: 5px;
}

.message-subtitle {
  font-size: 28px;
  color: #000000;
  font-weight: bold;
  text-shadow: 2px 2px 0px #ffffff, 4px 4px 0px #ffffff;
  letter-spacing: 2px;
}

@keyframes boardSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-100px);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes mascotBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.08);
  }
}
