/* Premium Heading */
.premium-heading {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Premium Card */
.premium-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

/* Image Section */
.premium-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.premium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.premium-card:hover .premium-image img {
  transform: scale(1.08);
}

/* Status Badge */
.premium-status {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(90deg, #198754, #20c997);
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 30px;
  font-weight: 600;
}

/* Participants Overlay */
.premium-participants {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
}

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

.premium-content h5 {
  font-weight: 600;
  margin-bottom: 16px;
}

/* Meta Info */
.premium-meta div {
  font-size: 14px;
  margin-bottom: 8px;
  color: #495057;
}

.award {
  font-weight: 600;
  color: #0d6efd;
}

/* Footer */
.premium-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ministry {
  font-size: 13px;
  color: #6c757d;
  max-width: 60%;
}

/* Premium Button */
.premium-btn {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  border: none;
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.premium-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.premium-meta {
  margin-bottom: 15px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #495057;
  margin-bottom: 6px;
}

.meta-row span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.award {
  font-weight: 600;
  color: #0d6efd;
}




/* Banner */
.quiz-banner {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 300px;
}

.quiz-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}

.banner-overlay h2 {
  font-weight: 700;
}

/* Info Card */
.quiz-info-card {
  background: white;
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Section Titles */
.section-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.description {
  color: #495057;
  line-height: 1.6;
}

/* Rules */
.rules-list {
  padding-left: 18px;
}

.rules-list li {
  margin-bottom: 8px;
}

/* Stats Box */
.stats-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 18px;
}

.stat-item {
  font-size: 15px;
  margin-bottom: 12px;
}

.award {
  font-weight: 600;
  color: #0d6efd;
}

/* Start Button */
.btn-start {
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  border: none;
  color: white;
  padding: 10px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-start:hover {
  transform: scale(1.05);
  opacity: 0.9;
}