:root {
  --bg-dark: #0b1220;
  --bg-dark-2: #111827;
  --primary: #3b82f6;
  --accent: linear-gradient(135deg, #2563eb, #7c3aed);
  --card-bg: #ffffff;
  --text-dark: #111827;
  --text-muted: #6b7280;
}


.hero-section {
  background: linear-gradient(135deg, #0b1220, #111827);
  padding: 80px 0;
  color: #fff;
}

.hero-section h1 {
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-section p {
  color: #cbd5e1;
}

.hero-search input {
  width: 100%;
  max-width: 520px;
  padding: 14px 18px;
  border-radius: 14px;
  border: none;
  margin-top: 20px;
}


.section-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.game-card {
  background: var(--card-bg);
  padding: 18px;
  border-radius: 16px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  transition: all .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge-open {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 20px;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  min-height: 38px;
}

.product-price {
  font-weight: bold;
  color: #2563eb;
  margin-top: 6px;
}

.product-seller {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

.seller-badge {
  color: #22c55e;
  margin-left: 4px;
}

.trust-box {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  height: 100%;
}
.alert {
  border-radius: 14px;
}


.site-footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 40px 0;
}

.site-footer h6 {
  color: #fff;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}
