:root {
  --bg: #0b0b0b;
  --card: #141414;
  --gold: #d4af37;
  --muted: #a1a1a1;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.site-header {
  padding: 16px;
  text-align: center;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.brand-logo {
  height: 56px;
  object-fit: contain;
}

.page-title {
  color: var(--gold);
  font-weight: 700;
  text-align: center;
  margin: 24px 0;
  font-size: 1.4rem;
}

/* ✅ GRID: tüm tarayıcı uyumlu */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  padding: 0 20px;
  justify-items: center;
}

.review-card {
  width: 100%;
  max-width: 340px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s ease;
}

.review-card:hover {
  transform: translateY(-3px);
}

.logo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 10px;
}

.rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.star {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.star.empty {
  fill: rgba(255,255,255,0.1);
}

.rating-number {
  color: var(--muted);
  font-size: 0.9rem;
  margin-left: 4px;
}

.bonus {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 6px;
}

.cta {
  margin-top: 12px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

.cta:hover {
  background: #c9a233;
}

.site-footer {
  text-align: center;
  color: var(--muted);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 40px;
}

/* Mobil uyum */
@media (max-width: 480px) {
  .page-title {
    font-size: 1.2rem;
  }

  .logo-wrap {
    width: 80px;
    height: 80px;
  }
}
