/* TechReview ID — Blog Review Gadget & Teknologi */
/* Warna: #0d47a1 (primer), #00e5ff (aksen), #f0f4ff (background) */

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

:root {
  --primary: #0d47a1;
  --primary-dark: #092f6e;
  --primary-light: #1565c0;
  --accent: #00e5ff;
  --accent-dark: #00b8cc;
  --bg: #f0f4ff;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-muted: #5a6378;
  --border: #d0dbf0;
  --shadow: 0 2px 12px rgba(13,71,161,0.10);
  --shadow-hover: 0 6px 24px rgba(13,71,161,0.18);
  --radius: 10px;
  --radius-sm: 6px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; display: block; }

/* ── DEMO BAR ── */
.demo-bar {
  background: var(--primary-dark);
  color: #e8eeff;
  text-align: center;
  font-size: 0.78rem;
  padding: 7px 16px;
  letter-spacing: 0.02em;
}
.demo-bar a { color: var(--accent); font-weight: 600; }
.demo-bar a:hover { color: #fff; }

/* ── NAVIGATION ── */
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

/* checkbox-hack menu */
#menu-toggle { display: none; }
.menu-btn {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}
nav ul li a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
nav ul li a:hover, nav ul li a.active {
  background: rgba(0,229,255,0.18);
  color: var(--accent);
}

@media (max-width: 700px) {
  .menu-btn { display: flex; }
  nav {
    position: absolute;
    top: 58px; left: 0; right: 0;
    background: var(--primary-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  #menu-toggle:checked ~ nav { max-height: 300px; }
  nav ul { flex-direction: column; padding: 12px 20px 16px; gap: 2px; }
  nav ul li a { display: block; padding: 10px 12px; }
}

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
main { padding: 40px 0 60px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1a237e 100%);
  color: #fff;
  padding: 56px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,229,255,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(0,229,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(0,229,255,0.18);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid rgba(0,229,255,0.35);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 28px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #33eaff; transform: translateY(-1px); color: var(--primary-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,229,255,0.08); }

/* ── SECTION TITLES ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  padding-left: 14px;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.see-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex; align-items: center; gap: 4px;
}
.see-all:hover { color: var(--accent-dark); }

/* ── FEATURED GRID (homepage) ── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.featured-grid .card-main { grid-column: 1 / -1; }
@media (min-width: 700px) {
  .featured-grid { grid-template-columns: 2fr 1fr 1fr; }
  .featured-grid .card-main { grid-column: 1; grid-row: 1 / 3; }
}

/* ── ARTICLE CARD ── */
.article-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 60%, #0097a7 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.card-thumb svg { opacity: 0.85; }
.card-thumb .thumb-label {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
}
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 8px;
}
.card-body h3 a { color: inherit; }
.card-body h3 a:hover { color: var(--primary); }
.card-body p { font-size: 0.85rem; color: var(--text-muted); flex: 1; margin-bottom: 12px; line-height: 1.5; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.77rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.card-meta .cat-tag {
  background: #e8f0fe;
  color: var(--primary);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.72rem;
}
.card-main .card-thumb { aspect-ratio: 16/10; }
.card-main .card-body h3 { font-size: 1.2rem; }

/* ── CATEGORIES PILLS ── */
.cat-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cat-pill {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── ARTICLES LIST PAGE ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #1a237e 100%);
  color: #fff;
  padding: 44px 20px;
  margin-bottom: 0;
}
.page-header h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.78); font-size: 0.95rem; max-width: 520px; }
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  display: flex; gap: 6px; align-items: center;
}
.breadcrumb a { color: var(--accent); }

/* ── DETAIL PAGE ── */
.detail-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 36px;
}
@media (min-width: 768px) {
  .detail-wrap { grid-template-columns: 1fr 300px; }
}
.article-detail { background: var(--bg-card); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.detail-hero {
  width: 100%;
  aspect-ratio: 16/8;
  background: linear-gradient(135deg, #0d47a1 0%, #0097a7 100%);
  display: flex; align-items: center; justify-content: center;
}
.detail-content { padding: 28px; }
.detail-cat {
  display: inline-block;
  background: #e8f0fe;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.detail-content h1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.article-meta-bar {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.meta-author { font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.author-dot {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-dark);
}
.article-body { font-size: 0.96rem; line-height: 1.8; color: var(--text); }
.article-body h2 { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin: 28px 0 10px; }
.article-body h3 { font-size: 1.05rem; font-weight: 700; margin: 20px 0 8px; }
.article-body p { margin-bottom: 14px; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 14px; }
.article-body li { margin-bottom: 6px; }
.article-body .callout {
  background: #e8f0fe;
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-size: 0.92rem;
  color: var(--primary-dark);
}
.spec-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.88rem; }
.spec-table th, .spec-table td { padding: 9px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.spec-table th { background: #e8f0fe; color: var(--primary); font-weight: 700; }
.spec-table tr:last-child td { border-bottom: none; }

/* Rating */
.rating-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.rating-score { font-size: 3rem; font-weight: 900; color: var(--accent); line-height: 1; }
.rating-label { font-size: 0.85rem; opacity: 0.8; }
.rating-bars { flex: 1; min-width: 180px; }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; font-size: 0.8rem; }
.rating-bar-bg { flex: 1; background: rgba(255,255,255,0.2); border-radius: 50px; height: 6px; }
.rating-bar-fill { background: var(--accent); border-radius: 50px; height: 6px; }

/* Sidebar */
.sidebar {}
.sidebar-widget {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
}
.widget-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.recent-list { list-style: none; }
.recent-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.recent-list li:last-child { border-bottom: none; padding-bottom: 0; }
.recent-list a { color: var(--text); font-weight: 600; line-height: 1.4; display: block; }
.recent-list a:hover { color: var(--primary); }
.recent-list span { color: var(--text-muted); font-size: 0.77rem; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-cloud a {
  background: #e8f0fe;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.tag-cloud a:hover { background: var(--primary); color: #fff; }

/* Related articles */
.related-section { padding: 28px; border-top: 1px solid var(--border); }
.related-section h3 { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.related-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.related-card:hover { box-shadow: var(--shadow); }
.related-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, #1565c0 0%, #0097a7 100%); display: flex; align-items: center; justify-content: center; }
.related-body { padding: 10px 12px; font-size: 0.82rem; font-weight: 600; color: var(--text); }
.related-body a { color: inherit; }
.related-body a:hover { color: var(--primary); }

/* ── ABOUT PAGE ── */
.about-wrap { display: grid; gap: 32px; }
@media (min-width: 700px) { .about-wrap { grid-template-columns: 260px 1fr; } }
.author-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  text-align: center;
}
.author-avatar {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
}
.author-name { font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.author-role { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.author-socials { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.social-btn {
  background: #e8f0fe;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--primary); color: #fff; }
.author-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat-box {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
}
.stat-num { font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.stat-lbl { font-size: 0.72rem; color: var(--text-muted); }

.about-content { background: var(--bg-card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.about-content h2 { font-size: 1.15rem; font-weight: 800; color: var(--primary); margin: 22px 0 10px; }
.about-content h2:first-child { margin-top: 0; }
.about-content p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-top: 16px; }
.team-card { background: var(--bg); border-radius: var(--radius-sm); padding: 16px; text-align: center; border: 1px solid var(--border); }
.team-avatar { width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; color: #fff; }
.team-name { font-size: 0.88rem; font-weight: 700; }
.team-role { font-size: 0.75rem; color: var(--text-muted); }

/* ── CONTACT PAGE ── */
.contact-wrap { display: grid; gap: 28px; }
@media (min-width: 700px) { .contact-wrap { grid-template-columns: 1fr 380px; } }
.contact-form-card { background: var(--bg-card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.form-title { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,71,161,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--primary-light); transform: translateY(-1px); }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.info-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.info-card p, .info-card li { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
.info-card ul { list-style: none; padding: 0; }
.info-card ul li { padding: 4px 0; border-bottom: 1px solid var(--border); }
.info-card ul li:last-child { border-bottom: none; }
.collab-badge {
  display: inline-block;
  background: #e8f0fe;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin: 3px 3px 3px 0;
}
.social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--primary); color: var(--primary); background: #e8f0fe; }
.social-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ── SUBSCRIBE BANNER ── */
.subscribe-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1a237e 100%);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  color: #fff;
  margin-top: 48px;
}
.subscribe-banner h2 { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.subscribe-banner p { font-size: 0.9rem; color: rgba(255,255,255,0.78); margin-bottom: 20px; }
.subscribe-form { display: flex; gap: 10px; max-width: 400px; margin: 0 auto; flex-wrap: wrap; }
.subscribe-form input {
  flex: 1;
  min-width: 200px;
  padding: 11px 16px;
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
}
.subscribe-form button {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 22px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.subscribe-form button:hover { background: #33eaff; }

/* ── FOOTER ── */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 40px 20px 20px;
}
.footer-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { color: #fff; font-size: 1.1rem; }
.footer-brand p { font-size: 0.83rem; line-height: 1.65; margin-top: 10px; max-width: 220px; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--accent); }

/* ── UTILS ── */
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.text-center { text-align: center; }
.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
}

/* Pagination */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.page-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.page-btn:hover, .page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Highlight / score */
.verdict {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
}
