body {
  margin: 0;
  background: transparent;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
  color: #fff;
}

#salescouponscodes {
  background: transparent;
  color: #fff;
  padding: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.deal-card {
  display: flex;
  gap: 12px;
  background: #000;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid #222;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
  align-items: center;
}

.deal-card:hover {
  transform: scale(1.02);
  background: #111;
}

.deal-thumb {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
}

.deal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.deal-title {
  font-weight: 600;
  font-size: 16px;
}

.deal-store {
  font-size: 13px;
  color: #ccc;
}

.deal-more {
  text-align: center;
  margin-top: 18px;
}

.deal-more button {
  background: #111;
  color: #fff;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
}
