* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: #f8f9fa;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.site-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.1rem;
  color: #a0aec0;
  font-weight: 400;
}

.intro {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  margin: 2rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  font-size: 1rem;
  color: #4a5568;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.rank-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.product-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  background: #f8f9fa;
  flex-shrink: 0;
}

.product-info {
  flex: 1;
  min-width: 0;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #d69e2e;
  font-weight: 600;
  font-size: 0.9rem;
}

.reviews {
  color: #718096;
  font-size: 0.85rem;
}

.affiliate-btn {
  display: inline-block;
  background: #ed8936;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s ease;
}

.affiliate-btn:hover {
  background: #dd6b20;
}

.affiliate-disclosure {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.affiliate-disclosure h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

.affiliate-disclosure p {
  color: #718096;
  font-size: 0.9rem;
}

.site-footer {
  background: #1a1a2e;
  color: #a0aec0;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .product-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-meta {
    justify-content: center;
  }

  .site-header h1 {
    font-size: 1.75rem;
  }
}
