/* ============================================
   NEXT DRAW INFO - 下期攪珠資訊
   ============================================ */

.next-draw-section {
  max-width: 1000px;
  margin: 40px auto 0;
  padding: 0 30px;
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

.next-draw-header {
  background: #a30907;
  color: #fff;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.next-draw-body {
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 6px 6px;
  display: flex;
  overflow: hidden;
}

.next-draw-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.next-draw-row {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 13px;
}

.next-draw-row:last-child {
  border-bottom: none;
}

.next-draw-row.grey-bg {
  background: #f7f7f7;
}

.next-draw-row .nd-label {
  flex: 0 0 120px;
  color: #666;
  font-weight: 500;
}

.next-draw-row .nd-value {
  flex: 1;
  color: #333;
  font-weight: 600;
}

.next-draw-right {
  flex: 0 0 280px;
  background: linear-gradient(135deg, #fff8f8 0%, #fff0f0 100%);
  border-left: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.next-draw-right .nd-jackpot-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

.next-draw-right .nd-jackpot-value {
  font-size: 18px;
  font-weight: 700;
  color: #a30907;
  margin-bottom: 16px;
}

.next-draw-right .nd-est-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

.next-draw-right .nd-est-value {
  font-size: 28px;
  font-weight: 800;
  color: #a30907;
}

/* --- Mobile --- */
@media (max-width: 767px) {
  .next-draw-section {
    margin: 20px auto 0;
    padding: 0 15px;
  }

  .next-draw-body {
    flex-direction: column;
  }

  .next-draw-right {
    flex: none;
    border-left: none;
    border-top: 1px solid #e8e8e8;
    padding: 16px;
  }

  .next-draw-right .nd-est-value {
    font-size: 22px;
  }

  .next-draw-row .nd-label {
    flex: 0 0 100px;
    font-size: 12px;
  }

  .next-draw-row .nd-value {
    font-size: 12px;
  }
}
