/* Live Quizzes */
.live-quiz-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 350px;
    width: 100%;
  }
  
  .live-quiz-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .live-quiz-card-header {
    position: relative;
  }
  
  .live-quiz-card-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid var(--danger);
  }
  
  .live-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--danger);
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.5);
  }
  
  .live-quiz-card-body {
    padding: 25px;
  }
  
  .live-quiz-card-body h3 {
    font-size: 22px;
    margin: 0 0 15px;
    color: #2d3436;
  }
  
  .date-range {
    font-size: 14px;
    color: #636e72;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .date-range i {
    margin-right: 8px;
    color: var(--danger);
  }
  
  .quiz-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  
  .quiz-info div {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #2d3436;
  }
  
  .quiz-info i {
    margin-right: 8px;
    color: var(--danger);
  }
  
  .live-quiz-play-btn {
    background-image: linear-gradient(to right, #db3a3a, #d11b63, #b12488, #7b3ba3, #004aad);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
  }
  
  .live-quiz-play-btn:hover {
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
  }
  
  .live-quiz-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    background: #f7f7f7;
    border-top: 1px solid #e0e0e0;
  }
  
  .cash-prize {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2d3436;
  }
  
  .cash-prize i {
    margin-right: 8px;
    color: #feca57;
  }
  
  .terms {
    font-size: 14px;
    color: var(--danger);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .terms:hover {
    color: var(--red-hover-color);
  }
  
  /* Live Quizzes end*/