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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: #333;
  background: #FAFAFA;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.site-nav {
  background: #1B3A4B;
  color: white;
  padding: 16px 0;
  margin-bottom: 32px;
}
.site-nav a { color: white; text-decoration: none; }
.site-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-weight: 700; font-size: 18px; }
.nav-links a { margin-left: 20px; opacity: 0.8; }
.nav-links a:hover { opacity: 1; }

/* Home */
.home-page h1 { font-size: 28px; margin-bottom: 8px; }
.home-page h2 { font-size: 22px; margin: 32px 0 16px; border-bottom: 2px solid #D32F2F; padding-bottom: 4px; }

.platform-grid {
  display: grid;
  gap: 16px;
}
.platform-card {
  background: white;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
}
.platform-card h3 { margin-bottom: 8px; }
.platform-card h3 a { color: #1B3A4B; text-decoration: none; }
.platform-card h3 a:hover { color: #D32F2F; }

/* Article */
.review-page h1 { font-size: 24px; margin-bottom: 24px; }
.review-page h2 { font-size: 20px; margin: 24px 0 8px; border-bottom: 1px solid #DDD; padding-bottom: 4px; }
.review-page p { margin-bottom: 16px; }
.review-page table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.review-page th, .review-page td { border: 1px solid #DDD; padding: 8px 12px; text-align: left; }
.review-page th { background: #F5F5F5; }

/* CTA */
.affiliate-cta { text-align: center; margin: 32px 0; }
.affiliate-cta a {
  display: inline-block;
  background: #1B3A4B;
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.affiliate-cta a:hover { background: #D32F2F; }
.disclaimer { font-size: 12px; color: #999; margin-top: 8px; }

/* Footer */
.site-footer {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid #EEE;
  color: #888;
  font-size: 14px;
}
