@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --gold-dark: #b8923e;
  --text: #e0e0e0;
  --text-muted: #999;
  --border: #2a2a2a;
  --gold-gradient: linear-gradient(135deg, #d4a853, #e8c97a, #d4a853);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--gold);
  line-height: 1.3;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

/* ── Header ─────────────────────────────────── */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .5px;
}
.logo span { color: var(--text-muted); font-weight: 400; font-size: .85rem; margin-left: 8px; }

nav { display: flex; gap: 24px; flex-wrap: wrap; }
nav a {
  color: var(--text-muted);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color .2s;
}
nav a:hover, nav a.active { color: var(--gold); }

/* ── Hero ────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  background: linear-gradient(180deg, rgba(212,168,83,.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 20px;
}
.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 30px;
}
.badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--gold-dark);
  border-radius: 30px;
  font-size: .8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ── Container ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section ─────────────────────────────────── */
.section {
  padding: 60px 0;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
}
.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 700px;
}

/* ── Rating Card ─────────────────────────────── */
.rating-list { display: flex; flex-direction: column; gap: 28px; }

.rating-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  transition: border-color .3s, background .3s;
}
.rating-card:hover {
  border-color: var(--gold-dark);
  background: var(--bg-card-hover);
}
.rating-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212,168,83,.08), rgba(212,168,83,.03));
  box-shadow: 0 0 40px rgba(212,168,83,.07);
}

.rank {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  text-align: center;
  line-height: 1;
  padding-top: 4px;
}
.rank small {
  display: block;
  font-size: .65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.card-body h3 a { color: var(--gold); }
.card-body h3 a:hover { color: var(--gold-light); }

.card-meta {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.card-meta span { margin-right: 16px; }

.card-body p {
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.75;
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag {
  padding: 4px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .78rem;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
}
.tag:hover { border-color: var(--gold-dark); color: var(--gold); }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .25s;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold-gradient);
  color: #0a0a0a;
}
.btn-gold:hover {
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(212,168,83,.35);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(212,168,83,.1);
  border-color: var(--gold);
}

/* ── Info Boxes ──────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: border-color .3s;
}
.info-box:hover { border-color: var(--gold-dark); }
.info-box h3 { font-size: 1.15rem; margin-bottom: 10px; }
.info-box p { color: var(--text-muted); font-size: .95rem; }

/* ── Content Page ────────────────────────────── */
.content-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.content-page h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
.content-page h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.content-page h2:first-of-type { border-top: none; padding-top: 0; }
.content-page p {
  margin-bottom: 16px;
  color: var(--text);
}
.content-page ul, .content-page ol {
  margin: 0 0 20px 24px;
  color: var(--text);
}
.content-page li { margin-bottom: 8px; }

/* ── Product Grid ────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  transition: border-color .3s, transform .3s;
}
.product-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}
.product-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.product-card p { color: var(--text-muted); font-size: .93rem; margin-bottom: 18px; }

/* ── Footer ──────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: .85rem;
}
.site-footer a { color: var(--gold-dark); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 50px 20px 40px; }
  .hero h1 { font-size: 1.8rem; }
  .rating-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }
  .rank {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
  }
  .rank small { display: inline; margin-top: 0; }
  .header-inner { flex-direction: column; align-items: flex-start; }
  nav { gap: 16px; }
  .section-title { font-size: 1.5rem; }
  .content-page h1 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .cta-row { flex-direction: column; }
  .btn { text-align: center; }
}
