:root {
  --bg: #14141a;
  --surface: #1e1e26;
  --surface-hover: #262631;
  --text: #eaeaf0;
  --text-dim: #9a9aab;
  --border: #2c2c38;
  --header-bg: #1e1e26;
  --header-text: #eaeaf0;
  --accent: #ff4d6d;
  --search-bg: #1e1e26;
  --category-chip-bg: #1e1e26;
  --category-chip-text: #9a9aab;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

/* 作品一覧グリッド:横3列/2列/1列 */
.item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 860px) {
  .item-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .item-grid { grid-template-columns: repeat(1, 1fr); }
}

.item-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .15s ease, background .15s ease;
}
.item-card:hover { transform: translateY(-3px); background: var(--surface-hover); }

/* サムネイルはすべて同じ比率にそろえる(3:4) */
.item-card .thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: #0c0c10;
}

.item-card .item-body { padding: 10px 12px 14px; }
.item-card .item-title {
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}
.item-card .item-date {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ページ送り */
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
}
.pagination a:hover { background: var(--surface); color: var(--text); }
.pagination .current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 700;
}

.msg { padding: 12px 16px; border-radius: 8px; margin: 16px 0; font-size: 0.9rem; }
.msg.error { background: rgba(255,77,109,0.15); border: 1px solid var(--accent); color: #ff8fa3; }
.msg.warning { background: rgba(255,200,0,0.12); border: 1px solid #ffcc00; color: #ffcc00; }
.msg.success { background: rgba(77,214,122,0.15); border: 1px solid #4dd67a; color: #8ef0b0; }

/* フッター */
.site-footer {
  text-align: center;
  padding: 30px 16px;
  color: var(--text-dim);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
}
.footer-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-categories a {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.8rem;
}
.footer-categories a:hover { color: var(--text); border-color: var(--accent); }
.footer-links { margin-bottom: 12px; }
.footer-links a { color: var(--accent); }
.disclaimer {
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.8;
  font-size: 0.72rem;
  opacity: 0.8;
}
.copyright { font-size: 0.72rem; opacity: 0.7; }

/* サイトマップ */
.sitemap-list { list-style: none; padding: 0; margin: 20px 0 0; }
.sitemap-list li {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.sitemap-list a { color: var(--text); }
.sitemap-list a:hover { color: var(--accent); }

/* 検索窓(トップページ・検索ページ共通) */
.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.search-form input[type="text"] {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--search-bg);
  color: var(--text);
  font-size: 0.95rem;
}
.search-form select {
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--search-bg);
  color: var(--text);
}
.search-form button {
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

/* 人気キーワード */
.popular-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.popular-keywords .keyword-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  font-size: 0.82rem;
}
.popular-keywords .keyword-tag:hover {
  color: var(--text);
  border-color: var(--accent);
}

/* 検索結果が0件のとき */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
  border: 1px dashed var(--border);
  border-radius: 10px;
  margin-top: 20px;
}
.empty-state p { margin: 4px 0; }
.empty-state a { color: var(--accent); text-decoration: underline; }

/* 作品ページ */
.entry-detail { max-width: 640px; margin: 0 auto; }
.entry-image {
  width: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 20px;
  background: var(--surface);
}
.entry-title {
  font-size: 1.3rem;
  margin: 0 0 16px;
  line-height: 1.5;
}
.entry-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 16px;
  margin: 0 0 20px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.entry-meta dt { color: var(--text-dim); font-size: 0.85rem; }
.entry-meta dd { margin: 0; font-size: 0.9rem; }

.entry-tags { margin-bottom: 16px; }
.entry-tags .tag-label {
  display: inline-block;
  min-width: 4.5em;
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-right: 8px;
}
.entry-tags .tag-link {
  display: inline-block;
  padding: 4px 12px;
  margin: 0 6px 6px 0;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  font-size: 0.8rem;
}
.entry-tags .tag-link:hover { color: var(--text); border-color: var(--accent); }

.official-link {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 16px 24px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ヘッダー */
.site-header {
  background: var(--header-bg);
  color: var(--header-text);
  border-bottom: 1px solid var(--border);
}
.site-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.site-header .site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  color: var(--header-text);
}
.site-header .site-name {
  font-weight: 700;
  font-size: 1.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-header .site-desc {
  font-size: 0.75rem;
  opacity: 0.75;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* スマホ用ハンバーガーボタン(デスクトップでは非表示) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--header-text);
  border-radius: 2px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 20px 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-entries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}
.category-entries a {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--header-text);
  opacity: 0.85;
}
.category-entries a:hover { opacity: 1; border-color: var(--accent); }

.sort-form { flex-shrink: 0; }
.sort-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--header-text);
  opacity: 0.85;
}
.sort-label select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.8rem;
}

/* スマホでは、メニューは初期非表示でボタン押下時に開く */
@media (max-width: 720px) {
  .menu-toggle { display: flex; }
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 16px;
  }
  .site-nav.is-open { display: flex; }
  .category-entries { flex-direction: column; }
  .sort-form { width: 100%; }
  .sort-label { justify-content: space-between; width: 100%; }
  .sort-label select { flex: 1; max-width: 60%; }
}

/* 分類一覧ページ(ジャンル一覧・出演者一覧など) */
.page-heading { font-size: 1.25rem; margin: 12px 0 20px; }
.breadcrumb { margin-top: 16px; }
.breadcrumb a { color: var(--text-dim); font-size: 0.85rem; }
.breadcrumb a:hover { color: var(--accent); }

.kana-jump-link { margin: -8px 0 20px; }
.kana-jump-link a { color: var(--accent); font-size: 0.9rem; }
.kana-jump-link a:hover { text-decoration: underline; }

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--category-chip-bg, var(--surface));
  color: var(--category-chip-text, var(--text-dim));
  font-size: 0.85rem;
}
.category-chip:hover { color: var(--text); border-color: var(--accent); }

/* 分類ページの新着/ランキング切り替えタブ */
.sort-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  vertical-align: middle;
}
.sort-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.sort-tabs a {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-dim);
}
.sort-tabs a.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}

/* 記事関連 */
.top-articles { margin: 24px 0; }
.top-articles-heading { font-size: 1.05rem; margin-bottom: 12px; }

.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .article-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .article-list { grid-template-columns: repeat(1, 1fr); } }

.article-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .15s ease, background .15s ease;
}
.article-card:hover { transform: translateY(-3px); background: var(--surface-hover); }
.article-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display:block; background:#0c0c10; }
.article-body { padding: 12px 14px 16px; }
.article-category {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(255,77,109,0.15);
  color: var(--accent);
  font-size: 0.72rem;
  margin-bottom: 8px;
}
.article-title { font-size: 0.95rem; font-weight:700; margin-bottom: 6px; }
.article-excerpt { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 8px; line-height:1.6; }
.article-date { font-size: 0.75rem; color: var(--text-dim); }

.article-detail { max-width: 680px; margin: 0 auto; }
.article-detail-image { width: 100%; border-radius: 10px; margin: 16px 0; }
.article-content {
  margin-top: 20px;
  line-height: 1.9;
  font-size: 0.95rem;
}
.article-content h1, .article-content h2, .article-content h3 { margin-top: 1.6em; margin-bottom: 0.6em; }
.article-content p { margin: 0 0 1em; }
.article-content a { color: var(--accent); text-decoration: underline; }
.article-content img { max-width: 100%; border-radius: 8px; }
.article-content ul, .article-content ol { padding-left: 1.4em; margin-bottom: 1em; }
.article-content blockquote {
  margin: 1em 0;
  padding: 10px 16px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  color: var(--text-dim);
}
.article-content code { background: var(--surface); padding: 2px 6px; border-radius: 4px; font-size: 0.85em; }
.article-content pre { background: var(--surface); padding: 14px; border-radius: 8px; overflow-x: auto; }

/* パンくずリスト */
.breadcrumb-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px 0;
}
.breadcrumb-trail ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.breadcrumb-trail li { display: flex; align-items: center; gap: 4px; }
.breadcrumb-trail li:not(:last-child)::after { content: "›"; margin-left: 4px; opacity: 0.6; }
.breadcrumb-trail a { color: var(--text-dim); }
.breadcrumb-trail a:hover { color: var(--accent); }
.breadcrumb-trail li:last-child span { color: var(--text); }

/* 人気ランキング */
.ranking-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ranking-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.ranking-item:hover { background: var(--surface-hover); }
.ranking-rank {
  flex-shrink: 0;
  width: 2.4em;
  text-align: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
}
.ranking-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 85px;
  object-fit: cover;
  border-radius: 6px;
  background: #0c0c10;
}
.ranking-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ranking-title {
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ranking-count {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* 年齢確認画面 */
.age-gate-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 16px;
}
.age-gate-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: 12px;
  text-align: center;
  max-width: 420px;
}
.age-gate-box h1 { font-size: 1.3rem; margin-bottom: 16px; }
.age-gate-box p { color: var(--text-dim); line-height: 1.7; }
.age-gate-buttons {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.age-gate-buttons a {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}
.age-gate-buttons .btn-yes { background: var(--accent); color: #fff; }
.age-gate-buttons .btn-no { background: var(--border); color: var(--text-dim); }

/* コメント欄(⑯) */
.comments-section {
  max-width: 640px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.comments-heading {
  font-size: 1.05rem;
  margin: 0 0 16px;
}
.comment-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 24px;
}
.comment-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.comment-form input[type="text"],
.comment-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
}
.comment-form textarea { min-height: 90px; resize: vertical; }
.comment-form button {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}
.comments-empty { color: var(--text-dim); font-size: 0.9rem; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.comment-item:last-child { border-bottom: none; }
.comment-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.comment-name { font-weight: 700; color: var(--text); }
.comment-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  word-break: break-word;
}

/* もっと見る(⑰) */
.load-more-wrap {
  text-align: center;
  margin: 24px 0;
}
.load-more-btn {
  padding: 12px 32px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}
.load-more-btn:hover { border-color: var(--accent); }
.load-more-btn:disabled { opacity: 0.6; cursor: default; }
.load-more-status {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.load-more-status.is-error { color: #ff8fa3; }

/* ヒーロースライダー(⑲) */
.hero-slider {
  position: relative;
  margin: 0 0 24px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface) center/cover no-repeat;
  /* aspect-ratioに未対応の環境向けフォールバック。
     対応環境ではすぐ下のaspect-ratio指定で上書きされる。 */
  height: 0;
  padding-top: 37.5%; /* 16:6相当(6/16) */
}
@supports (aspect-ratio: 16 / 6) {
  .hero-slider {
    height: auto;
    padding-top: 0;
    aspect-ratio: 16 / 6;
    min-height: 160px;
  }
}
/* データ取得に失敗した時は、高さ確保用の箱を維持せずコンパクトに表示する
   (下に続く作品一覧の見え方が崩れるのを防ぐため) */
.hero-slider.hero-slider-collapsed {
  height: auto;
  aspect-ratio: auto;
  padding-top: 0;
  min-height: 0;
}
.hero-slider.hero-slider-collapsed .hero-slider-status {
  position: static;
  padding: 14px;
}
.hero-slider-track {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  transition: transform 0.5s ease;
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
}
.hero-slide img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 22px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.hero-slider-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider-arrow.prev { left: 12px; }
.hero-slider-arrow.next { right: 12px; }
.hero-slider-arrow:hover { background: rgba(0,0,0,0.7); }
.hero-slider-dots {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
}
.hero-slider-dot.active { background: #fff; }
.hero-slider-status {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  padding: 16px;
  text-align: center;
  /* このエラーメッセージ用の透明な層が、hidden属性中も画面全体を覆って
     作品画像やドットのクリックを奪ってしまっていたため、常にクリックは
     素通りさせる(メッセージ自体はテキストなので操作対象ではない)。 */
  pointer-events: none;
}
/* hidden属性を持つ間は、CSSの display:flex より [hidden] の display:none を
   確実に優先させる(念のための二重の保険)。 */
.hero-slider-status[hidden] {
  display: none;
}
@media (max-width: 640px) {
  .hero-slider { aspect-ratio: 4 / 3; }
  .hero-slide-caption { font-size: 0.85rem; padding: 12px; }
}

/* サークルをあいうえお順で探す(⑳・50音表に改修) */
.kana-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px;
  max-width: 420px;
}
.kana-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.kana-row-extra {
  grid-template-columns: repeat(5, 1fr);
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.kana-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--category-chip-bg, var(--surface));
  color: var(--category-chip-text, var(--text));
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}
.kana-button:hover { border-color: var(--accent); background: var(--surface-hover); }
.kana-button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.kana-button-blank {
  border: none;
  background: transparent;
}
.empty-state-hint { color: var(--text-dim); }

/* 人気ランキングへの導線ボタン(㉔) */
.ranking-cta {
  display: block;
  text-align: center;
  padding: 14px 16px;
  margin: 20px 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent), #ff8a3d);
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  text-decoration: none;
}
.ranking-cta:hover { opacity: 0.92; }
