/* ========================================
   HOMEPAGE STYLES - PREMIUM DARK THEME
   ======================================== */
body.home-page {
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  justify-content: center;
  min-height: 100vh;
}

body.home-page .overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* Header with logo */
header {
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  animation: fadeInDown 0.8s ease-out;
}

.citroen-logo {
  width: 40vw;
  min-width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  margin-bottom: 1rem;
}

/* Hero Image in Container */
.hero-image {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

  .question-image {
    border-radius: 10px;
    object-fit: cover;
    max-width: 65%;
    display: block;
    margin: 0 auto 15px;
  }
  
  /* Main container - Glassmorphism Card */
  .container {
    z-index: 1;
    max-width: 700px;
    margin: auto;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 2.5rem 3rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
  }

  .container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.05) 50%,
      transparent 70%
    );
    animation: shine 6s infinite;
    pointer-events: none;
  }

  h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  }

  /* Button - Premium Gradient */
  .start-btn {
    background: linear-gradient(135deg, #ff2d55, #ff6b81);
    color: white;
    padding: 1rem 2.8rem;
    border-radius: 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 45, 85, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: center;
    position: relative;
    overflow: hidden;
    border: none;
  }

  .start-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s ease;
  }

  .start-btn:hover::before {
    left: 100%;
  }

  .start-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 45, 85, 0.5);
    background: linear-gradient(135deg, #ff3a60, #ff7b8f);
  }

  .start-btn:active {
    transform: scale(0.98);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes shine {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }

  /* Responsive styles */
  @media (max-width: 768px) {
    .citroen-logo {
      width: 50vw;
      max-width: 180px;
      min-width: 120px;
    }

    .container {
      padding: 2rem 1.5rem;
      margin: 1rem;
    }

    .hero-image {
      max-height: 200px;
      margin-bottom: 1.5rem;
    }

    h1 {
      font-size: 2.2rem;
    }

    p {
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    .start-btn {
      font-size: 1.1rem;
      padding: 1rem 2.5rem;
    }
  }

  @media (max-width: 500px) {
    .citroen-logo {
      width: 60vw;
      max-width: 140px;
      min-width: 100px;
    }

    .container {
      padding: 1.5rem 1rem;
      margin: 0.75rem;
      border-radius: 20px;
    }

    .hero-image {
      max-height: 150px;
      margin-bottom: 1rem;
      border-radius: 8px;
    }

    h1 {
      font-size: 1.8rem;
    }

    p {
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }

    .start-btn {
      font-size: 1rem;
      padding: 0.9rem 2rem;
      width: 100%;
      max-width: 280px;
    }

    header {
      padding: 15px 10px;
    }
  }

  /* ========================================
     FORM PAGE STYLES - PREMIUM DARK THEME
     ======================================== */
  body.form-page {
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    justify-content: center;
    min-height: 100vh;
  }

  body.form-page .overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
  }

  /* Glassmorphism Form Container */
  .form-container {
    z-index: 2;
    padding: 2.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    width: 95%;
    max-width: 500px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
  }

  .form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.05) 50%,
      transparent 70%
    );
    animation: shine 6s infinite;
    pointer-events: none;
  }

  .form-citroen-logo {
    width: 40vw;
    min-width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    margin-bottom: 1rem;
  }

  .form-header {
    margin-bottom: 2rem;
  }

  .form-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .form-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  }

  .modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-group {
    text-align: left;
  }

  .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
  }

  .input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .input-wrapper input:focus {
    outline: none;
    border-color: #ff2d55;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(255, 45, 85, 0.15);
    transform: translateY(-2px);
  }

  .input-wrapper input:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
  }

  .input-icon {
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    opacity: 0.7;
    pointer-events: none;
  }

  /* Premium Button */
  .start-btn {
    background: linear-gradient(135deg, #ff2d55, #ff6b81);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 45, 85, 0.35);
    position: relative;
    overflow: hidden;
  }

  .start-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.5s ease;
  }

  .start-btn:hover::before {
    left: 100%;
  }

  .start-btn:hover {
    background: linear-gradient(135deg, #ff3a60, #ff7b8f);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 45, 85, 0.5);
  }

  .start-btn:active {
    transform: scale(0.98);
  }

  .btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .start-btn:hover .btn-icon {
    transform: translateX(5px);
  }
  
  /* Responsive form styles */
  @media (max-width: 768px) {
    .form-container {
      padding: 2rem 1.5rem;
      max-width: 90%;
    }

    .form-header h1 {
      font-size: 1.8rem;
    }

    .form-header p {
      font-size: 0.9rem;
    }

    .input-wrapper input {
      padding: 0.9rem 0.9rem 0.9rem 2.5rem;
      font-size: 0.95rem;
    }

    .input-icon {
      left: 0.8rem;
      font-size: 1.1rem;
    }

    .start-btn {
      padding: 1rem 2rem;
      font-size: 1rem;
      width: 100%;
    }
  }

  @media (max-width: 500px) {
    .form-container {
      padding: 1.5rem 1rem;
      width: 95%;
      border-radius: 20px;
    }

    .form-header h1 {
      font-size: 1.5rem;
    }

    .form-header p {
      font-size: 0.85rem;
    }

    .modern-form {
      gap: 1.2rem;
    }

    .input-wrapper input {
      padding: 0.8rem 0.8rem 0.8rem 2.2rem;
      font-size: 0.9rem;
    }

    .input-icon {
      left: 0.7rem;
      font-size: 1rem;
    }

    .start-btn {
      padding: 0.9rem 1.5rem;
      font-size: 0.95rem;
    }
  }

  /* ========================================
     QUIZ PAGE STYLES - PREMIUM DARK THEME
     ======================================== */
  body.quiz-page {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Glassmorphism Container */
  .quiz-container {
    width: 100%;
    max-width: 800px;
    margin: 20px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  /* Subtle shine effect */
  .quiz-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.05) 50%,
      transparent 70%
    );
    animation: shine 6s infinite;
    pointer-events: none;
    z-index: -1;
  }

  @keyframes shine {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }

  .quiz-header {
    margin-bottom: 1.5rem;
    padding: 1rem;
    position: relative;
    z-index: 1;
  }

  .quiz-citroen-logo {
    width: 40vw;
    min-width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  }
  .quiz-car-image {
    width: 70%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .quiz-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .quiz-content {
    position: relative;
    z-index: 1;
  }

  .question-section {
    animation: fadeIn 0.6s ease-out;
  }

  /* Question Number Badge */
  .question-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.2), rgba(255, 107, 129, 0.2));
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: inline-block;
    border: 1px solid rgba(255, 45, 85, 0.3);
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.2);
    margin-bottom: 1.5rem;
  }

  /* Question Text - Larger & Bold */
  .question-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    padding: 0 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .answers-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  /* Glass Answer Buttons */
  .answer-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 2rem;
    border-radius: 16px;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .answer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transition: left 0.5s ease;
  }

  .answer-btn:hover::before {
    left: 100%;
  }

  .answer-btn:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.3);
    border-color: #ff2d55;
    background: rgba(255, 45, 85, 0.15);
  }

  .answer-btn:active:not(:disabled) {
    transform: translateY(-2px);
  }

  /* Correct Answer - Green Gradient */
  .answer-btn.correct {
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    border-color: #10b981;
    animation: correctAnswer 0.5s ease-in-out;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  }

  

  /* Incorrect Answer - Red Gradient */
  .answer-btn.incorrect {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border-color: #ef4444;
    animation: incorrectAnswer 0.5s ease-in-out;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
  }

  .answer-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
  }

  /* Next Button - Premium Gradient */
  .next-btn {
    background: linear-gradient(135deg, #ff2d55, #ff6b81);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
  }

  .next-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .next-btn:hover::before {
    width: 300px;
    height: 300px;
  }

  .next-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 45, 85, 0.5);
  }

  .next-btn:active {
    transform: translateY(-2px) scale(1.02);
  }

  /* Results Section */
  .results-section {
    animation: fadeIn 0.6s ease-out;
  }

  .results-content {
    padding: 2rem 1rem;
  }

  .results-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  }

  .score-display {
    margin-bottom: 2.5rem;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .score-number {
    font-size: 6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff2d55, #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 45, 85, 0.5);
    direction: ltr;
    unicode-bidi: embed;
    filter: drop-shadow(0 4px 10px rgba(255, 45, 85, 0.4));
  }

  .score-text {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .results-message {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  }

  /* Restart Button - Glass Style */
  .restart-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .restart-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes correctAnswer {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  @keyframes incorrectAnswer {
    0% { transform: scale(1); }
    25% { transform: scale(1.05) translateX(-5px); }
    50% { transform: scale(1.05) translateX(5px); }
    75% { transform: scale(1.05) translateX(-5px); }
    100% { transform: scale(1); }
  }

  /* Responsive Quiz Styles */
  @media (max-width: 768px) {
    .quiz-container {
      padding: 1.5rem 1rem;
      margin: 1rem;
      border-radius: 20px;
    }

    .quiz-citroen-logo {
      width: 50vw;
      max-width: 150px;
    }

    .quiz-title {
      font-size: 2rem;
    }

    .question-number {
      font-size: 1rem;
      padding: 0.6rem 1.2rem;
    }

    .question-text {
      font-size: 1.6rem;
      margin-bottom: 2rem;
    }

    .answer-btn {
      padding: 1.1rem 1.5rem;
      font-size: 1.2rem;
    }

    .next-btn {
      padding: 1rem 2.5rem;
      font-size: 1.2rem;
    }

    .results-title {
      font-size: 2.2rem;
    }

    .score-number {
      font-size: 4.5rem;
    }

    .score-text {
      font-size: 3rem;
    }

    .results-message {
      font-size: 1.1rem;
    }

    .restart-btn {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  @media (max-width: 500px) {
    .quiz-container {
      padding: 1rem 0.75rem;
      margin: 0.5rem;
    }

    .quiz-citroen-logo {
      width: 60vw;
      max-width: 120px;
    }

    .quiz-title {
      font-size: 1.6rem;
    }

    .question-number {
      font-size: 0.9rem;
      padding: 0.5rem 1rem;
    }

    .question-text {
      font-size: 1.3rem;
      padding: 0;
      margin-bottom: 1.5rem;
    }

    .answer-btn {
      padding: 1rem 1.2rem;
      font-size: 1.05rem;
    }

    .next-btn {
      padding: 0.9rem 2rem;
      font-size: 1.1rem;
    }

    .results-title {
      font-size: 1.8rem;
    }

    .score-number {
      font-size: 3.5rem;
    }

    .score-text {
      font-size: 2.5rem;
    }

    .results-message {
      font-size: 1rem;
    }

    .restart-btn {
      padding: 0.9rem 1.5rem;
      font-size: 0.95rem;
    }
  }
  