.bl-lotto-hub {
  font-family: Arial, sans-serif;
  color: #1f2933;
  margin: 1.5rem 0;
}

.bl-lotto-feature,
.bl-lotto-panel {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

.bl-lotto-feature-head,
.bl-lotto-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.bl-lotto-eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  font-weight: 700;
}

.bl-lotto-feature h2,
.bl-lotto-panel h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
  color: #231f20;
}

.bl-lotto-dates {
  background: #ffe100;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  min-width: 260px;
}

.bl-lotto-balls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin: 0.85rem 0;
}

.bl-lotto-ball {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fbc02d;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}

.bl-lotto-bonus {
  background: #1976d2;
  color: #fff;
}

.bl-lotto-bonus-note {
  font-size: 0.82rem;
  color: #4b5563;
  margin-top: -0.3rem;
}

.bl-lotto-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.bl-lotto-meta-grid div,
.bl-lotto-small-meta div {
  background: #f8fafc;
  border-radius: 10px;
  padding: 0.75rem;
}

.bl-lotto-meta-grid span,
.bl-lotto-small-meta dt {
  display: block;
  color: #6b7280;
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}

.bl-lotto-meta-grid strong,
.bl-lotto-small-meta dd {
  font-weight: 800;
  margin: 0;
}

.bl-lotto-countdown {
  margin-top: 1rem;
  background: #32b4f5;
  color: #fff;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.bl-lotto-countdown span {
  font-weight: 700;
}

.bl-lotto-countdown strong {
  color: #000;
  background: #ffe100;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.bl-lotto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bl-lotto-card {
  border: 1px solid #eef0f3;
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.bl-lotto-card-title {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.bl-lotto-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.bl-lotto-card-title span {
  font-size: 0.72rem;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
}

.bl-lotto-card p {
  margin: 0.35rem 0;
  font-size: 0.9rem;
}

.bl-lotto-card .bl-lotto-ball {
  width: 32px;
  height: 32px;
  font-size: 0.82rem;
}

.bl-lotto-small-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin: 0.65rem 0 0;
}

.bl-lotto-small-meta div {
  padding: 0.55rem;
}

.bl-lotto-table-wrap {
  overflow-x: auto;
}

.bl-lotto-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.bl-lotto-table th {
  text-align: left;
  background: #f8fafc;
  color: #374151;
  padding: 0.7rem;
  border-bottom: 1px solid #e5e7eb;
}

.bl-lotto-table td {
  padding: 0.7rem;
  border-bottom: 1px solid #eef0f3;
}

.bl-lotto-muted {
  color: #6b7280;
}

.bl-lotto-notice {
  background: #fff8d6;
  border: 1px solid #ffe680;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin: 1rem 0;
  font-size: 0.92rem;
}

.bl-lotto-official a {
  display: inline-block;
  background: #ffe100;
  color: #000;
  text-decoration: none;
  font-weight: 800;
  border-radius: 8px;
  padding: 0.65rem 1rem;
}

.bl-lotto-error {
  background: #fff3f3;
  border: 1px solid #ffc9c9;
  border-radius: 10px;
  padding: 1rem;
  color: #8a1f1f;
}

@media (max-width: 900px) {
  .bl-lotto-meta-grid,
  .bl-lotto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bl-lotto-feature-head,
  .bl-lotto-panel-head {
    display: block;
  }

  .bl-lotto-dates {
    margin-top: 0.75rem;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .bl-lotto-feature,
  .bl-lotto-panel {
    padding: 1rem;
    border-radius: 12px;
  }

  .bl-lotto-meta-grid,
  .bl-lotto-grid {
    grid-template-columns: 1fr;
  }

  .bl-lotto-ball {
    width: 40px;
    height: 40px;
  }

  .bl-lotto-countdown {
    display: block;
  }

  .bl-lotto-countdown strong {
    display: inline-block;
    margin-top: 0.5rem;
  }

  .bl-lotto-table {
    font-size: 0.86rem;
  }

  .bl-lotto-table th,
  .bl-lotto-table td {
    padding: 0.55rem;
  }
}