:root {
      --bg: #050507;
      --bg-alt: #101118;
      --card-bg: #151621;
      --gold: #d4af37;
      --gold-soft: #c9a961;
      --text-main: #f7f7f7;
      --text-muted: #a8acb9;
      --accent: #d4af37;
      --border-subtle: rgba(255, 255, 255, 0.08);
      --shadow-soft: 0 14px 35px rgba(0, 0, 0, 0.7);
      --radius-lg: 18px;
      --radius-md: 12px;
      --radius-pill: 999px;
    }

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

    html, body {
      background: radial-gradient(circle at top, #151621 0, #050507 52%, #000 100%);
      color: var(--text-main);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    /* Layout */
    .page {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px 80px;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: linear-gradient(to bottom, rgba(5,5,7,0.95), rgba(5,5,7,0.92) 60%, transparent);
      border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 14px 16px 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .header-search {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(10, 10, 12, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .header-search input[type="search"] {
      border: none;
      background: transparent;
      color: var(--text-main);
      font-size: 12px;
      outline: none;
      min-width: 140px;
    }

    .header-search input[type="search"]::placeholder {
      color: var(--text-muted);
    }

    .header-search button {
      border: none;
      background: transparent;
      color: var(--accent);
      font-size: 12px;
      cursor: pointer;
      padding: 0;
    }

    @media (max-width: 640px) {
      .header-search {
        display: none;
      }
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: conic-gradient(from 210deg, #d4af37, #f6e39b, #d4af37, #8c6b1a);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.45);
    }

    .logo-mark span {
      font-size: 19px;
      font-weight: 700;
      color: #050507;
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    .logo-text-main {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
    }

    .logo-text-sub {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
    }

    .nav a {
      padding: 6px 14px;
      border-radius: 999px;
      border: 1px solid transparent;
      color: var(--text-muted);
      transition: all 0.18s ease-out;
      white-space: nowrap;
    }

    .nav a:hover {
      border-color: rgba(212, 175, 55, 0.7);
      color: #fff;
      background: radial-gradient(circle at top, rgba(212, 175, 55, 0.19), transparent 60%);
    }

    .nav a.nav-primary {
      border-color: rgba(212, 175, 55, 0.7);
      color: #050507;
      background: linear-gradient(135deg, #f3dd8c, #d4af37, #a37b13);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
      font-weight: 600;
    }

    .nav a.nav-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.75);
    }

    @media (max-width: 720px) {
      .header-inner {
        flex-wrap: wrap;
        row-gap: 10px;
      }
      .nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 6px;
      }
    }

    /* Hero */
    .hero {
      padding: 40px 0 30px;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 30px;
      align-items: center;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-soft);
      margin-bottom: 10px;
    }

    .hero-title {
      font-size: clamp(26px, 4vw, 34px);
      line-height: 1.35;
      margin-bottom: 14px;
    }

    .hero-title span {
      background: linear-gradient(135deg, #f9e8a7, #d4af37, #f6e39b);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-lead {
      font-size: 14px;
      line-height: 1.9;
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 18px;
      border-radius: var(--radius-pill);
      border: 1px solid transparent;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.2s ease-out;
      background: transparent;
      color: var(--text-main);
    }

    .btn-primary {
      background: linear-gradient(135deg, #f3dd8c, #d4af37, #a37b13);
      color: #050507;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.78);
      font-weight: 600;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.9);
    }

    .btn-secondary {
      border-color: rgba(212, 175, 55, 0.5);
      color: var(--gold-soft);
      background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 60%);
    }

    .btn-secondary:hover {
      border-color: rgba(212, 175, 55, 0.9);
      color: #fff;
    }

    .hero-note {
      font-size: 11px;
      color: var(--text-muted);
    }

    .hero-visual {
      position: relative;
      border-radius: 24px;
      padding: 2px;
      background: radial-gradient(circle at top left, #f9e9b3, #d4af37, #151621);
      box-shadow: var(--shadow-soft);
    }

    .hero-visual-inner {
      border-radius: 22px;
      background: radial-gradient(circle at top, #1b1c28, #050507);
      padding: 18px 18px 18px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .hero-badge {
      align-self: flex-start;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      font-size: 11px;
      background: rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: var(--gold-soft);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .hero-card {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      background: linear-gradient(145deg, #222330, #101118);
      min-height: 110px;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 55%);
      pointer-events: none;
    }

    .hero-card-body {
      position: absolute;
      inset: auto 10px 10px;
      z-index: 2;
    }

    .hero-card-title {
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .hero-card-tags {
      font-size: 10px;
      color: var(--text-muted);
    }

    .hero-card-metric {
      position: absolute;
      top: 6px;
      left: 8px;
      font-size: 10px;
      color: #ffd;
      background: rgba(0, 0, 0, 0.55);
      padding: 2px 7px;
      border-radius: 999px;
    }

    @media (max-width: 880px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero {
        padding-top: 28px;
      }
    }

    /* Sections */
    section {
      margin-bottom: 48px;
      scroll-margin-top: 90px;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 18px;
    }

    .section-title {
      font-size: 24px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-soft);
    }

    .section-sub {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* Filter pills */
    .filter-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
    }

    .filter-pill {
      font-size: 14px;
      padding: 8px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: var(--text-muted);
      cursor: pointer;
      background: rgba(10, 10, 12, 0.7);
      transition: all 0.16s ease-out;
    }

    .filter-pill:hover {
      border-color: rgba(212, 175, 55, 0.8);
      color: #fff;
    }

    .filter-pill.active {
      background: linear-gradient(135deg, #f3dd8c, #d4af37, #a37b13);
      border-color: transparent;
      color: #050507;
      font-weight: 600;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
    }

    /* Cards grid */
    .grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    @media (max-width: 960px) {
      .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .card {
      background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.09), transparent 55%), var(--card-bg);
      border-radius: var(--radius-lg);
      padding: 10px;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65);
      border: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
      overflow: hidden;
      transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
      cursor: pointer;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(212, 175, 55, 0.55);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
    }

    .card-thumb {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 10px;
      background: #202231;
      min-height: 200px;
    }

    .card-thumb::after {
      content: "PHOTO";
      position: absolute;
      inset: auto 8px 8px;
      font-size: 10px;
      padding: 3px 7px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: var(--text-muted);
    }

    .card-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      font-size: 11px;
      padding: 3px 7px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.6);
      color: #ffe;
    }

    .card-rank {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #f9e7a2, #d4af37, #8c6b1a);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: #050507;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.85);
    }

    .card-body {
      padding: 2px 2px 4px;
    }

    .card-name {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .card-handle {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .card-meta-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
    }

    .card-meta {
      font-size: 11px;
      color: var(--text-muted);
    }

    .card-meta strong {
      color: #fff;
      font-weight: 600;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin-bottom: 6px;
    }
    .card-headline {
      font-size: 11px;
      color: var(--text-muted);
      margin-bottom: 4px;
      line-height: 1.6;
    }


    .tag {
      font-size: 10px;
      padding: 2px 7px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      color: var(--text-muted);
      backdrop-filter: blur(3px);
      background: rgba(0, 0, 0, 0.25);
    }

    .card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 6px;
    }

    .card-link {
      font-size: 11px;
      color: var(--gold-soft);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .card-link span {
      font-size: 13px;
      transform: translateY(1px);
    }

    /* Detail section */
    .detail-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 24px;
    }

    @media (max-width: 880px) {
      .detail-layout {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .detail-main {
      background: var(--bg-alt);
      border-radius: 20px;
      padding: 18px;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
    }

    .detail-thumb {
      border-radius: 16px;
      background: radial-gradient(circle at top, #27283a, #050507);
      min-height: 220px;
      margin-bottom: 14px;
      position: relative;
      overflow: hidden;
    }

    .detail-thumb::before {
      content: "PROFILE PHOTO";
      position: absolute;
      inset: auto 12px 12px;
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: var(--text-muted);
    }

    .detail-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .detail-handle {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .detail-meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .detail-meta-item {
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .detail-tags {
      margin-bottom: 12px;
    }

    .detail-tags .tag {
      font-size: 11px;
    }

    .detail-bio {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .detail-headline {
      font-size: 13px;
      color: var(--text-main);
      margin-bottom: 6px;
      line-height: 1.7;
    }


    .detail-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .detail-side {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .detail-small-card {
      background: var(--bg-alt);
      border-radius: 16px;
      padding: 12px;
      border: 1px solid var(--border-subtle);
      font-size: 12px;
      color: var(--text-muted);
      box-shadow: var(--shadow-soft);
    }

    .detail-small-title {
      font-size: 13px;
      color: var(--gold-soft);
      margin-bottom: 8px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 6px;
      margin-top: 6px;
    }

    .mini-thumb {
      border-radius: 8px;
      background: #242535;
      min-height: 60px;
      position: relative;
      overflow: hidden;
    }

    .mini-thumb::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
    }

    /* About */
    .about-box {
      background: rgba(5, 5, 7, 0.9);
      border-radius: 20px;
      padding: 18px;
      border: 1px solid rgba(212, 175, 55, 0.6);
      box-shadow: var(--shadow-soft);
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.9;
    }

    .about-box strong {
      color: #fff;
    }

    .about-list {
      margin-top: 10px;
      padding-left: 16px;
    }

    .about-list li {
      margin-bottom: 4px;
    }


    .latest-more {
      margin-top: 20px;
      display: flex;
      justify-content: flex-end;
    }

    .latest-more-btn {
      font-size: 13px;
      padding: 10px 18px;
    }

    .ranking-more {
      margin-top: 20px;
      display: flex;
      justify-content: flex-end;
    }

    .ranking-more-btn {
      font-size: 13px;
      padding: 10px 18px;
    }

    .all-more {
      margin-top: 20px;
      display: flex;
      justify-content: flex-end;
    }

    .all-more-btn {
      font-size: 13px;
      padding: 10px 18px;
    }

    @media (max-width: 640px) {
      .latest-more,
      .ranking-more,
      .all-more {
        justify-content: center;
      }
    }

    /* Footer */
    .site-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding: 20px 16px 26px;
      font-size: 11px;
      color: var(--text-muted);
      text-align: center;
      background: radial-gradient(circle at bottom, #151621 0, #050507 40%, #000 100%);
    }