.quiz-page {
  min-height: 100vh;
}

.quiz-heading {
  font-size: 32px;
  font-weight: 700;
}

.quiz-subheading {
  color: #777;
  font-size: 16px;
}

/* Card */
.quiz-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.quiz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Image */
.quiz-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.quiz-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.quiz-card:hover .quiz-image img {
  transform: scale(1.05);
}

/* Time Badge */
.quiz-time-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1e2820;
  color: white;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
}

/* Content */
.quiz-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.quiz-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.quiz-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Button */
.quiz-btn {
  margin-top: auto;
  padding: 10px;
  border-radius: 10px;
  border: none;
  background: #1e2820;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.quiz-btn:hover {
  background: #2e3c30;
}

/* Responsive */
@media (max-width: 768px) {
  .quiz-heading {
    font-size: 24px;
  }
}