/* ============================================================
   AnimeGOI – css/style.css
   Colors: #0B0B0B | #E50914 | #1F1F1F | #FFFFFF
   Fonts : Bebas Neue (headings) | Inter (body)
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0B0B0B;
  --bg2:       #1F1F1F;
  --bg3:       #2a2a2a;
  --red:       #E50914;
  --red-hover: #ff1a28;
  --white:     #FFFFFF;
  --gray:      #999999;
  --gray-lt:   #cccccc;
  --border:    #2e2e2e;
  --radius:    8px;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.55);
  --shadow-red: 0 4px 20px rgba(229,9,20,0.35);
  --max-w: 1280px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button, input, textarea { font-family: var(--font-body); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Utility ───────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 1.5px;
  color: var(--white);
  line-height: 1.1;
}
.section-title span { color: var(--red); }

.label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.badge {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--gray-lt);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}
.badge:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hover); box-shadow: var(--shadow-red); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-sm { padding: 8px 18px; font-size: 12px; }

.star { color: #f59e0b; }

.divider { height: 1px; background: var(--border); margin: 48px 0; }

/* ── Header / Nav ─────────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,11,11,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  white-space: nowrap;
}
.logo span { color: var(--red); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 5px;
  color: var(--gray-lt);
  transition: all var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--white); background: var(--bg2); }
.nav-menu a.active { color: var(--red); }

.nav-search {
  display: flex;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  min-width: 200px;
}
.nav-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  padding: 8px 14px;
  font-size: 13px;
  width: 100%;
}
.nav-search button {
  background: var(--red);
  border: none;
  color: var(--white);
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
  transition: background var(--transition);
}
.nav-search button:hover { background: var(--red-hover); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ── Page Layout (with sidebar) ───────────────────────────── */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 48px 0;
}
.page-main { min-width: 0; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0a0a 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(229,9,20,0.12) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.012) 60px,
      rgba(255,255,255,0.012) 61px
    );
  z-index: 0;
}
.hero-poster-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(to right, var(--bg) 0%, transparent 40%);
  z-index: 1;
}
.hero-poster-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.35;
  filter: grayscale(20%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 72px 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow .label { font-size: 11px; }
.hero-eyebrow .separator { color: var(--border); }
.hero-eyebrow .genre-tag { color: var(--gray); font-size: 12px; font-weight: 500; letter-spacing: .5px; text-transform: uppercase; }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 em { color: var(--red); font-style: normal; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--gray);
}
.hero-meta .rating { color: #f59e0b; font-weight: 700; font-size: 15px; }
.hero-meta .sep { color: var(--border); }

.hero-desc {
  font-size: 15px;
  color: var(--gray-lt);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Section Spacing ──────────────────────────────────────── */
.section { padding: 64px 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.section-header .view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}
.section-header .view-all:hover { text-decoration: underline; }

/* ── Anime Cards Grid ──────────────────────────────────────── */
.anime-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 20px;
}
.anime-grid-lg { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.anime-card {
  background: var(--bg2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  border: 1px solid var(--border);
}
.anime-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.anime-card-poster {
  position: relative;
  padding-top: 140%;
  overflow: hidden;
}
.anime-card-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.anime-card:hover .anime-card-poster img { transform: scale(1.06); }

.anime-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.95) 0%, transparent 55%);
}
.anime-card-rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(11,11,11,0.85);
  color: #f59e0b;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.anime-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
}
.anime-card-body { padding: 14px; }
.anime-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: .8px;
  margin-bottom: 6px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.anime-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.anime-card-meta span { font-size: 11px; color: var(--gray); }
.anime-card-meta .dot { color: var(--border); }
.anime-card-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Rank Card (Top Anime) ────────────────────────────────── */
.rank-list { display: flex; flex-direction: column; gap: 12px; }
.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg2);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}
.rank-item:hover { border-color: var(--red); background: var(--bg3); }
.rank-num {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--red);
  width: 32px;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
}
.rank-item .rank-num:first-child:nth-child(1) { color: #f59e0b; }
.rank-poster {
  width: 52px;
  height: 72px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}
.rank-info { flex: 1; min-width: 0; }
.rank-title {
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: .6px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rank-meta { font-size: 11px; color: var(--gray); display: flex; gap: 8px; }
.rank-score {
  font-size: 15px;
  font-weight: 700;
  color: #f59e0b;
  flex-shrink: 0;
}

/* ── Genre Pills ─────────────────────────────────────────── */
.genre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.genre-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.genre-pill:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-red); }
.genre-pill .genre-icon { font-size: 28px; }
.genre-pill .genre-name { font-family: var(--font-head); font-size: 16px; letter-spacing: .8px; }
.genre-pill .genre-count { font-size: 11px; color: var(--gray); }
.genre-pill:hover .genre-count { color: rgba(255,255,255,0.7); }

/* ── Review Cards ────────────────────────────────────────── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-3px); }
.review-card-top { display: flex; align-items: flex-start; gap: 14px; }
.review-card-thumb {
  width: 70px;
  height: 95px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}
.review-card-head { flex: 1; }
.review-card-title { font-family: var(--font-head); font-size: 18px; letter-spacing: .7px; margin-bottom: 6px; }
.review-score {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}
.review-score .score-num { font-weight: 700; font-size: 15px; color: #f59e0b; }
.review-score .score-max { font-size: 12px; color: var(--gray); }
.review-stars span { font-size: 13px; }
.review-summary { font-size: 13px; color: var(--gray-lt); line-height: 1.6; flex: 1; }
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--gray);
}
.review-author { font-weight: 600; color: var(--gray-lt); }

/* ── Article Cards ───────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.article-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.article-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.article-card-thumb {
  padding-top: 55%;
  position: relative;
  overflow: hidden;
}
.article-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.article-card:hover .article-card-thumb img { transform: scale(1.06); }
.article-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.article-card-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.article-card-title {
  font-family: var(--font-head);
  font-size: 19px;
  letter-spacing: .6px;
  line-height: 1.2;
}
.article-card-excerpt { font-size: 13px; color: var(--gray); line-height: 1.6; flex: 1; }
.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--gray);
}
.article-card-footer .read-more { color: var(--red); font-weight: 600; font-size: 12px; }
.article-card-footer .read-more:hover { text-decoration: underline; }

/* ── Single Article ──────────────────────────────────────── */
.article-single { max-width: 760px; }
.article-header { margin-bottom: 36px; }
.article-header .label { margin-bottom: 14px; }
.article-header h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 1.5px;
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.article-header .article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--gray);
  flex-wrap: wrap;
}
.article-header .article-meta .sep { color: var(--border); }
.article-hero-img { border-radius: var(--radius); margin-bottom: 36px; width: 100%; }
.article-body h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: 1px;
  margin: 36px 0 14px;
  color: var(--white);
  text-transform: uppercase;
  border-left: 3px solid var(--red);
  padding-left: 14px;
}
.article-body h3 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: .8px;
  margin: 24px 0 10px;
  color: var(--gray-lt);
  text-transform: uppercase;
}
.article-body p { font-size: 15px; color: var(--gray-lt); line-height: 1.75; margin-bottom: 18px; }
.article-body a { color: var(--red); font-weight: 500; }
.article-body a:hover { text-decoration: underline; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body li { font-size: 15px; color: var(--gray-lt); margin-bottom: 8px; line-height: 1.65; }
.article-cta {
  background: linear-gradient(135deg, var(--bg2) 0%, #1a0a0a 100%);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0;
  font-size: 14px;
  color: var(--gray-lt);
}
.article-cta strong { color: var(--red); }
.article-cta a { color: var(--red); font-weight: 600; }

/* ── Sidebar ─────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 32px; }
.sidebar-widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-widget-head {
  background: var(--bg3);
  padding: 14px 18px;
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}
.sidebar-widget-head span { color: var(--red); }
.sidebar-widget-body { padding: 16px 18px; }

.search-form { display: flex; gap: 8px; }
.search-form input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--white);
  font-size: 13px;
  outline: none;
}
.search-form input:focus { border-color: var(--red); }
.search-form button {
  background: var(--red);
  border: none;
  color: var(--white);
  padding: 9px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background var(--transition);
}
.search-form button:hover { background: var(--red-hover); }

.sidebar-anime-list { display: flex; flex-direction: column; gap: 12px; }
.sidebar-anime-item { display: flex; gap: 12px; align-items: flex-start; }
.sidebar-anime-item img { width: 50px; height: 68px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.sidebar-anime-item .sai-info { flex: 1; min-width: 0; }
.sidebar-anime-item .sai-title { font-family: var(--font-head); font-size: 14px; letter-spacing: .5px; margin-bottom: 3px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar-anime-item .sai-meta { font-size: 11px; color: var(--gray); }
.sidebar-anime-item .sai-rating { font-size: 11px; color: #f59e0b; font-weight: 600; }

.sidebar-article-list { display: flex; flex-direction: column; gap: 14px; }
.sidebar-article-item { display: flex; gap: 10px; align-items: flex-start; border-bottom: 1px solid var(--border); padding-bottom: 14px; }
.sidebar-article-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-article-item img { width: 64px; height: 44px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.sidebar-article-item .sal-title { font-size: 13px; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar-article-item .sal-date { font-size: 11px; color: var(--gray); margin-top: 4px; }

.cat-list { display: flex; flex-direction: column; gap: 4px; }
.cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-lt);
  transition: all var(--transition);
}
.cat-list a:hover { background: var(--bg3); color: var(--red); padding-left: 16px; }
.cat-list a span { font-size: 11px; color: var(--gray); background: var(--bg3); padding: 2px 6px; border-radius: 10px; }

.blogroll-list { display: flex; flex-direction: column; gap: 4px; }
.blogroll-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-lt);
  transition: all var(--transition);
}
.blogroll-list a::before { content: '↗'; color: var(--red); font-size: 12px; }
.blogroll-list a:hover { background: var(--bg3); color: var(--red); }

/* ── Page Hero Banner ────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--bg2) 0%, #1a0a0a 100%);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--red); }
.page-hero p { font-size: 16px; color: var(--gray); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray);
  justify-content: center;
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--border); }

/* ── Rekomendasi Lists ────────────────────────────────────── */
.rekom-section { margin-bottom: 56px; }
.rekom-section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 1.5px;
  border-left: 4px solid var(--red);
  padding-left: 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* ── Filter Tabs ─────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-tab {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-lt);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover, .filter-tab.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── Genre Page ──────────────────────────────────────────── */
.genre-section { margin-bottom: 56px; }
.genre-section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.genre-section-title .genre-tag-icon { font-size: 26px; }
.genre-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── Top Anime Table ─────────────────────────────────────── */
.top-table { width: 100%; border-collapse: collapse; }
.top-table thead tr { background: var(--bg2); }
.top-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}
.top-table td { padding: 14px 18px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.top-table tr:hover td { background: var(--bg2); }
.top-table .t-rank { font-family: var(--font-head); font-size: 22px; color: var(--red); width: 50px; }
.top-table .t-rank.gold { color: #f59e0b; }
.top-table .t-rank.silver { color: #9ca3af; }
.top-table .t-rank.bronze { color: #cd7c3e; }
.top-table .t-poster { width: 45px; height: 62px; object-fit: cover; border-radius: 4px; }
.top-table .t-title { font-family: var(--font-head); font-size: 17px; letter-spacing: .5px; margin-bottom: 3px; }
.top-table .t-meta { font-size: 11px; color: var(--gray); }
.top-table .t-score { font-weight: 700; color: #f59e0b; font-size: 15px; }
.top-table .t-genre .badge { margin: 2px; }

/* ── Contact Form ────────────────────────────────────────── */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-lt); margin-bottom: 6px; letter-spacing: .3px; }
.form-control {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--red); }
.form-control textarea { resize: vertical; min-height: 140px; }
textarea.form-control { resize: vertical; min-height: 140px; }

/* ── About Page ──────────────────────────────────────────── */
.about-content { max-width: 800px; }
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 36px 0 14px;
  color: var(--red);
}
.about-content p { font-size: 15px; color: var(--gray-lt); line-height: 1.75; margin-bottom: 16px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.stat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.stat-num { font-family: var(--font-head); font-size: 42px; color: var(--red); letter-spacing: 1px; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 13px; color: var(--gray); }

/* ── Sitemap Page ────────────────────────────────────────── */
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.sitemap-group-title { font-family: var(--font-head); font-size: 18px; letter-spacing: .8px; color: var(--red); text-transform: uppercase; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.sitemap-links { display: flex; flex-direction: column; gap: 6px; }
.sitemap-links a { font-size: 14px; color: var(--gray-lt); padding: 4px 0; transition: color var(--transition); }
.sitemap-links a:hover { color: var(--red); padding-left: 6px; }

/* ── Footer ──────────────────────────────────────────────── */
#footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-about .logo { font-size: 30px; margin-bottom: 14px; display: block; }
.footer-about p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }

.footer-col-title { font-family: var(--font-head); font-size: 16px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; color: var(--white); }
.footer-col-title span { color: var(--red); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: var(--gray); transition: color var(--transition); }
.footer-links a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 13px; color: var(--gray); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--red); }

/* ── Privacy / Legal Pages ────────────────────────────────── */
.legal-content { max-width: 800px; }
.legal-content h2 { font-family: var(--font-head); font-size: 24px; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin: 32px 0 12px; }
.legal-content h3 { font-family: var(--font-head); font-size: 18px; letter-spacing: .6px; text-transform: uppercase; color: var(--gray-lt); margin: 24px 0 10px; }
.legal-content p { font-size: 15px; color: var(--gray-lt); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { margin: 0 0 16px 22px; }
.legal-content li { font-size: 15px; color: var(--gray-lt); margin-bottom: 6px; line-height: 1.6; }

/* ── Top Anime — Full Rank List ─────────────────────────── */
.rank-list-full { display: flex; flex-direction: column; gap: 0; }
.rank-item-lg {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}
.rank-item-lg:hover { background: var(--bg2); }
.rank-item-lg .rank-num { font-family: var(--font-head); font-size: 28px; color: var(--gray); min-width: 36px; line-height: 1; padding-top: 4px; }
.rank-gold { color: #ffd700 !important; }
.rank-silver { color: #c0c0c0 !important; }
.rank-bronze { color: #cd7f32 !important; }
.rank-item-lg .rank-poster { width: 60px; min-width: 60px; height: 84px; object-fit: cover; border-radius: 6px; }
.rank-item-lg .rank-info { flex: 1; }
.rank-desc { font-size: 13px; color: var(--gray); line-height: 1.55; margin: 8px 0 10px; }
.rank-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.rank-score-big {
  text-align: center;
  min-width: 64px;
  background: var(--bg3);
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
}
.rsb-star { color: var(--red); font-size: 18px; }
.rsb-num { font-family: var(--font-head); font-size: 22px; letter-spacing: 1px; line-height: 1.1; }
.rsb-label { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg2) 0%, #1a0505 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.cta-banner-inner { text-align: center; }
.cta-banner h3 { font-family: var(--font-head); font-size: 28px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: var(--gray-lt); font-size: 15px; margin-bottom: 24px; }

/* ── Article Single ──────────────────────────────────────── */
.article-single { max-width: 100%; }
.article-header { margin-bottom: 32px; }
.article-header h1 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 46px); letter-spacing: 1px; line-height: 1.1; text-transform: uppercase; margin: 12px 0 16px; }
.article-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.amb-author { display: flex; align-items: center; gap: 12px; }
.amb-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.amb-name { font-weight: 600; font-size: 14px; color: var(--white); }
.amb-date { font-size: 12px; color: var(--gray); margin-top: 2px; }
.amb-share { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray); }
.amb-share a { font-size: 18px; color: var(--gray); transition: color var(--transition); }
.amb-share a:hover { color: var(--red); }
.article-hero-img img { width: 100%; height: auto; border-radius: var(--radius); }

.article-body { padding: 32px 0; }
.article-lead { font-size: 17px; color: var(--gray-lt); line-height: 1.75; font-weight: 400; margin-bottom: 24px; border-left: 3px solid var(--red); padding-left: 16px; }
.article-body h2 { font-family: var(--font-head); font-size: 26px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin: 36px 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.article-body h3 { font-family: var(--font-head); font-size: 20px; letter-spacing: .8px; text-transform: uppercase; color: var(--gray-lt); margin: 24px 0 10px; }
.article-body p { font-size: 15px; color: var(--gray-lt); line-height: 1.8; margin-bottom: 16px; }
.article-body a { color: var(--red); text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 3px; }
.article-body a:hover { color: var(--red-hover); }
.article-list { margin: 0 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.article-list li { font-size: 15px; color: var(--gray-lt); line-height: 1.65; list-style: disc; }

.article-infobox {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 28px 0;
  overflow: hidden;
}
.aib-head { background: var(--red); color: var(--white); font-family: var(--font-head); font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; padding: 10px 16px; }
.aib-body { padding: 16px; }
.aib-row { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.aib-row:last-child { border-bottom: none; }
.aib-label { color: var(--gray); min-width: 80px; font-weight: 600; }

.article-cta-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 15px;
  color: var(--gray-lt);
  line-height: 1.7;
}
.article-cta-box a { color: var(--red); text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 3px; }

.article-mini-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 20px 0 28px; }
.aml-item { display: flex; align-items: center; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--border); background: var(--bg2); transition: background var(--transition); }
.aml-item:last-child { border-bottom: none; }
.aml-item:hover { background: var(--bg3); }
.aml-rank { font-family: var(--font-head); font-size: 24px; color: var(--red); min-width: 32px; }
.aml-title { font-size: 14px; font-weight: 600; color: var(--white); }
.aml-meta { font-size: 12px; color: var(--gray); margin-top: 3px; }

.article-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 24px 0; border-top: 1px solid var(--border); font-size: 13px; color: var(--gray); }

.author-box {
  display: flex;
  gap: 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 32px 0 0;
  align-items: flex-start;
}
.author-box-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; min-width: 72px; border: 2px solid var(--border); }
.author-box-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; color: var(--white); }
.author-box-bio { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ── Prose Page (Privacy, Terms) ─────────────────────────── */
.prose-page { max-width: 820px; margin: 48px 0; }
.prose-section h2 { font-family: var(--font-head); font-size: 22px; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin: 36px 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.prose-section h3 { font-family: var(--font-head); font-size: 17px; letter-spacing: .6px; text-transform: uppercase; color: var(--gray-lt); margin: 22px 0 10px; }
.prose-section p { font-size: 15px; color: var(--gray-lt); line-height: 1.8; margin-bottom: 14px; }
.prose-section a { color: var(--red); text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 3px; }
.prose-section a:hover { color: var(--red-hover); }
.prose-section .article-list { margin: 0 0 16px 20px; }
.prose-section .article-list li { font-size: 15px; color: var(--gray-lt); margin-bottom: 6px; line-height: 1.65; list-style: disc; }

/* ── Page Hero SM ────────────────────────────────────────── */
.page-hero-sm { padding: 48px 0; }
.page-hero-sm h1 { font-size: clamp(28px, 4vw, 44px); }

/* ── About Page ──────────────────────────────────────────── */
.about-hero-block { margin-bottom: 32px; }
.about-hero-img { width: 100%; height: auto; border-radius: var(--radius); }
.about-pillars { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin: 24px 0 32px; }
.about-pillar {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color var(--transition);
}
.about-pillar:hover { border-color: var(--red); }
.ap-icon { font-size: 28px; margin-bottom: 10px; }
.ap-title { font-family: var(--font-head); font-size: 16px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.ap-desc { font-size: 14px; color: var(--gray); line-height: 1.65; }
.ap-desc a { color: var(--red); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; margin: 24px 0 32px; }
.team-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color var(--transition);
}
.team-card:hover { border-color: var(--red); }
.team-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 2px solid var(--border); }
.tc-name { font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 4px; }
.tc-role { font-size: 12px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; }
.tc-bio { font-size: 13px; color: var(--gray); line-height: 1.55; }

.prose-section .about-pillars, .prose-section .team-grid { display: initial; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; padding: 48px 0; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; } }

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-info-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cic-icon { font-size: 22px; min-width: 28px; }
.cic-title { font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .6px; }
.cic-value { font-size: 14px; color: var(--gray-lt); line-height: 1.6; }
.cic-value a { color: var(--red); }
.contact-topics h3 { font-family: var(--font-head); font-size: 18px; letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.contact-topics .article-list { margin-left: 18px; }
.contact-topics .article-list li { color: var(--gray-lt); font-size: 14px; margin-bottom: 6px; list-style: disc; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.cf-group { display: flex; flex-direction: column; gap: 7px; }
.cf-group label { font-size: 13px; font-weight: 600; color: var(--gray-lt); text-transform: uppercase; letter-spacing: .6px; }
.cf-group label span { color: var(--red); }
.cf-group input, .cf-group select, .cf-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  width: 100%;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { outline: none; border-color: var(--red); }
.cf-group select { appearance: none; cursor: pointer; }
.cf-group select option { background: var(--bg2); color: var(--white); }
.cf-group textarea { resize: vertical; min-height: 140px; }

/* ── Sitemap ─────────────────────────────────────────────── */
.sitemap-layout { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 40px; padding: 48px 0; }
.sitemap-section {}
.sitemap-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.sitemap-list li { display: flex; flex-direction: column; padding: 13px 18px; border-bottom: 1px solid var(--border); background: var(--bg2); transition: background var(--transition); }
.sitemap-list li:last-child { border-bottom: none; }
.sitemap-list li:hover { background: var(--bg3); }
.sitemap-list a { font-size: 14px; font-weight: 600; color: var(--white); transition: color var(--transition); }
.sitemap-list a:hover { color: var(--red); }
.sm-meta { font-size: 12px; color: var(--gray); margin-top: 3px; }

/* ── Article Grid Full ───────────────────────────────────── */
.article-grid-full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ── Pagination ──────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 48px; }
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--gray-lt);
  transition: all var(--transition);
}
.pagination a:hover, .pagination a.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── Scroll to Top ───────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-red);
  transition: all var(--transition);
  z-index: 999;
  text-decoration: none;
}
.scroll-top:hover { background: var(--red-hover); transform: translateY(-3px); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}
@media (max-width: 768px) {
  .nav-menu, .nav-search { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 460px; }
  .hero-poster-img, .hero-poster-bg { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .anime-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
  .review-grid, .article-grid { grid-template-columns: 1fr; }
  .top-table .t-genre { display: none; }
  .section { padding: 44px 0; }
  .hero-content { padding: 48px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 34px; }
  .anime-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ── Mobile Nav Overlay ──────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,11,11,0.96);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-head);
  font-size: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-lt);
  padding: 10px 24px;
  transition: color var(--transition);
}
.nav-overlay a:hover, .nav-overlay a.active { color: var(--red); }
.nav-overlay-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ── Contact — column class aliases ─────────────────────── */
.contact-info-col, .contact-form-col { min-width: 0; }

/* ── Article mini-list info block ────────────────────────── */
.aml-info { flex: 1; min-width: 0; }

/* ── Article breadcrumb (inside article, left-aligned) ───── */
.article-single .breadcrumb { justify-content: flex-start; margin-bottom: 20px; }

/* ── Rekomendasi page list layout ────────────────────────── */
.rekom-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.rekom-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.rekom-item:hover { border-color: var(--red); transform: translateX(4px); }
.rekom-item .ri-num { font-family: var(--font-head); font-size: 32px; color: var(--red); min-width: 40px; line-height: 1; padding-top: 6px; }
.rekom-item img { width: 56px; height: 78px; object-fit: cover; border-radius: 5px; flex-shrink: 0; }
.rekom-item .ri-body { flex: 1; min-width: 0; }
.rekom-item .ri-title { font-family: var(--font-head); font-size: 18px; letter-spacing: .6px; margin-bottom: 4px; }
.rekom-item .ri-meta { font-size: 12px; color: var(--gray); display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.rekom-item .ri-desc { font-size: 13px; color: var(--gray-lt); line-height: 1.55; }
.rekom-item .ri-score { font-size: 14px; font-weight: 700; color: #f59e0b; flex-shrink: 0; align-self: flex-start; padding-top: 6px; white-space: nowrap; }

/* ── Genre Hero Banner ───────────────────────────────────── */
.genre-hero-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--bg2) 0%, #160808 100%);
  border: 1px solid var(--border);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.ghb-icon { font-size: 44px; line-height: 1; }
.ghb-title { font-family: var(--font-head); font-size: clamp(28px,4vw,48px); letter-spacing: 2px; text-transform: uppercase; color: var(--white); line-height: 1; }
.ghb-sub { font-size: 13px; color: var(--gray); margin-top: 6px; }
.ghb-count { margin-left: auto; text-align: right; }
.ghb-count-num { font-family: var(--font-head); font-size: 38px; color: var(--red); line-height: 1; }
.ghb-count-label { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: .8px; }

/* ── Responsive extras ───────────────────────────────────── */
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-layout { grid-template-columns: 1fr; }
  .rank-item-lg { flex-wrap: wrap; }
  .rekom-item .ri-num { font-size: 24px; min-width: 28px; }
  .genre-hero-banner { flex-wrap: wrap; }
  .ghb-count { margin-left: 0; }
}
@media (max-width: 480px) {
  .about-pillars, .team-grid { grid-template-columns: 1fr; }
  .article-meta-bar { flex-direction: column; align-items: flex-start; }
  .footer-social a { width: 32px; height: 32px; font-size: 13px; }
}
