:root {
  --background: #fff;
  --foreground: #1f2937;
  --card: #fff;
  --card-foreground: #1f2937;
  --popover: #fff;
  --popover-foreground: #1f2937;
  --primary: #2563eb;
  --primary-foreground: #fff;
  --secondary: #f3f4f6;
  --secondary-foreground: #1f2937;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --accent: #eff6ff;
  --accent-foreground: #2563eb;
  --destructive: #ef4444;
  --destructive-foreground: #fff;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #2563eb;
  --sidebar: #f9fafb;
  --sidebar-border: #e5e7eb;
  --shadow-soft: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-medium: 0 10px 25px rgba(15, 23, 42, 0.10);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  line-height: 1.5;
  color: rgb(31, 41, 55);
  background: rgb(255, 255, 255);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

.site-shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.page-home {
  background: var(--background);
}

.page-internal {
  background: #f9fafb;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

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

.header-left,
.header-right,
.header-nav,
.header-nav-button,
.header-home-link,
.hero-badge,
.hero-actions,
.action-button,
.guide-item,
.major-stat-value-wrap,
.major-meta-row,
.major-meta-row > div,
.major-feature-row > div,
.notice-meta,
.notice-meta > div,
.notice-flag,
.sidebar-card-title-danger,
.sidebar-category-label,
.floating-alert-button {
  display: flex;
  align-items: center;
}

.header-left {
  gap: 32px;
}

.brand-link {
  font-size: 20px;
  font-weight: 700;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav-group {
  position: relative;
}

.header-nav-group summary {
  list-style: none;
}

.header-nav-group summary::-webkit-details-marker {
  display: none;
}

.header-home-link,
.header-nav-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted-foreground);
  transition: background-color .2s ease, color .2s ease;
}

.header-home-link:hover,
.header-nav-button:hover,
.header-home-link.is-current,
.header-nav-button.is-current {
  background: var(--accent);
  color: var(--foreground);
}

.header-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--background);
  box-shadow: var(--shadow-medium);
  z-index: 70;
}

.header-nav-group[open] .header-submenu {
  display: flex;
}

.header-submenu-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--foreground);
  white-space: nowrap;
}

.header-submenu-link:hover,
.header-submenu-link.is-current {
  background: var(--accent);
  color: var(--foreground);
}

.nav-chevron {
  width: 16px;
  height: 16px;
}

.nav-chevron-shape {
  display: inline-block;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.header-right {
  gap: 12px;
}

.mobile-menu-button {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.header-report-button,
.view-all-button,
.full-width-button,
.major-go-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform .15s ease, opacity .15s ease, background-color .15s ease;
}

.header-report-button {
  padding: 8px 14px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 14px;
  font-weight: 600;
}

.header-report-button:hover,
.action-button:hover,
.full-width-button:hover,
.major-go-button:hover,
.view-all-button:hover,
.floating-alert-button:hover {
  transform: translateY(-1px);
}

.home-hero {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), #fff, rgba(37, 99, 235, 0.10));
  border-bottom: 1px solid var(--border);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-badge {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.hero-badge-icon,
.button-icon,
.feature-icon,
.feature-card li img,
.guide-item img,
.comparison-table img,
.major-card img,
.notice-header img,
.sidebar-card img,
.floating-alert-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.inline-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.inline-icon-ok {
  background-image: url("/images/status-ok.svg");
}

.inline-icon-x {
  background-image: url("/images/status-x.svg");
}

.inline-icon-alert {
  background-image: url("/images/status-alert.svg");
}

.home-hero-title,
.internal-intro-panel h1,
.major-intro-panel h1,
.notice-header h1 {
  margin: 0;
  font-weight: 700;
  color: #111827;
}

.home-hero-title {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.home-hero-description {
  margin: 0 0 20px;
  color: var(--foreground);
  font-size: 18px;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.action-button {
  gap: 8px;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
}

.action-button-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.action-button-secondary {
  background: var(--background);
  color: var(--foreground);
  border: 1px solid var(--border);
}

.home-hero-artwork-wrap {
  display: flex;
  justify-content: center;
}

.home-hero-artwork {
  width: 100%;
  max-width: 480px;
  object-fit: cover;
}

.home-stats-band {
  background: rgba(243, 244, 246, 0.30);
  border-bottom: 1px solid var(--border);
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.stat-card {
  text-align: center;
}

.stat-value {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
}

.stat-label {
  color: var(--muted-foreground);
  font-size: 15px;
}

.content-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.muted-section {
  background: rgba(243, 244, 246, 0.30);
}

.bordered-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.subtle-section {
  background: rgba(243, 244, 246, 0.30);
}

.top-border-section {
  border-top: 1px solid var(--border);
}

.section-heading {
  margin-bottom: 32px;
}

.centered-heading {
  text-align: center;
}

.compact-heading {
  margin-bottom: 0;
}

.section-heading h2,
.bottom-cta h2,
.major-info-panel h2,
.faq-shell h2,
.recent-header h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #111827;
}

.section-heading p,
.bottom-cta p,
.internal-intro-panel p,
.major-intro-panel p,
.guide-panel p,
.major-info-panel p,
.faq-item p,
.tip-panel li,
.notice-prose p,
.sidebar-cta-box p,
.site-footer p,
.site-footer li {
  color: var(--muted-foreground);
}

.feature-card-grid,
.process-grid,
.recent-post-grid,
.guide-grid,
.major-stat-grid,
.major-info-grid {
  display: grid;
  gap: 24px;
}

.feature-card-grid,
.recent-post-grid,
.guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.process-card,
.recent-post-card,
.panel,
.sidebar-card,
.major-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
}

.feature-card h3,
.process-card h3,
.recent-post-card h3,
.faq-item h3,
.guide-panel h2,
.guide-item strong,
.major-card h3,
.major-info-grid h3,
.notice-prose h2,
.sidebar-card-title,
.sidebar-card-title-danger,
.site-footer h3,
.notice-pagination-link p {
  margin: 0;
  color: #111827;
}

.feature-card h3,
.recent-post-card h3,
.faq-item h3,
.major-card h3 {
  font-size: 24px;
  font-weight: 700;
}

.feature-card p {
  margin: 10px 0 16px;
}

.feature-card ul,
.tip-panel ul,
.major-criteria ul,
.notice-prose ul,
.notice-prose ol,
.site-footer ul {
  margin: 0;
  padding: 0;
}

.feature-card li,
.major-criteria li {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.feature-card li + li,
.major-criteria li + li,
.faq-item + .faq-item,
.popular-post-item + .popular-post-item,
.sidebar-category-item + .sidebar-category-item,
.recent-scam-item + .recent-scam-item {
  margin-top: 12px;
}

.recent-scam-item-static,
.popular-post-item-static {
  cursor: default;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  padding: 24px 20px;
  text-align: center;
}

.process-index {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 20px;
  font-weight: 700;
}

.process-card p,
.recent-post-meta,
.notice-meta,
.major-card-footer,
.popular-post-tag,
.recent-scam-item,
.sidebar-category-item,
.notice-pagination-link span {
  color: var(--muted-foreground);
  font-size: 14px;
}

.faq-shell {
  max-width: 960px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.faq-item h3 {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 24px;
}

.faq-item p {
  margin: 12px 0 0;
}

.recent-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.view-all-button {
  padding: 10px 16px;
  border: 1px solid var(--border);
  background: var(--background);
  font-size: 14px;
  font-weight: 600;
}

.recent-post-card {
  padding: 24px;
}

.recent-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.recent-post-link:hover {
  color: var(--primary);
}

.bottom-cta {
  text-align: center;
}

.bottom-cta p {
  margin: 12px 0 20px;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(243, 244, 246, 0.50);
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

.site-footer li {
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}

.footer-bottom p + p {
  margin-top: 8px;
}

.floating-alert-button {
  position: fixed;
  top: 80px;
  right: 16px;
  z-index: 50;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #dc2626;
  color: #fff;
  box-shadow: var(--shadow-medium);
}

.floating-alert-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.floating-alert-copy span:first-child {
  font-size: 14px;
  font-weight: 700;
}

.floating-alert-copy span:last-child {
  font-size: 12px;
}

.internal-page-shell {
  min-height: 100vh;
  background: #f9fafb;
}

.internal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: flex-start;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 48px;
}

.internal-main {
  flex: 1 1 auto;
  min-width: 0;
}

.internal-aside {
  width: 320px;
  flex: 0 0 320px;
}

.single-column-layout {
  grid-template-columns: minmax(0, 1fr);
}

.full-width-main {
  max-width: 860px;
}

.shell-full,
.shell-compact {
  padding-top: 28px;
  padding-bottom: 56px;
}

.has-compact-shell .site-header {
  display: none;
}

.intro-panel,
.guide-prose-panel,
.notice-box-panel,
.form-shell-panel,
.cta-panel,
.detail-hero-panel,
.rank-card,
.warning-card,
.archive-card,
.notice-list-card,
.major-card-rebuilt {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.compact-start-panel {
  margin-top: 4px;
}

.major-intro-panel {
  padding-top: 12px;
}

.danger-intro-panel {
  border-color: rgba(239, 68, 68, 0.2);
  background: linear-gradient(180deg, rgba(254, 242, 242, 0.95), #fff);
}

.trust-strip-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.trust-badge-item {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.summary-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.summary-metric-grid > div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.summary-metric-grid strong {
  font-size: 24px;
  line-height: 1.1;
  color: #111827;
}

.summary-metric-grid span,
.eyebrow-text,
.card-tail-link,
.direct-contact-list span {
  color: var(--muted-foreground);
}

.compact-metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.filter-chip-row,
.feature-tag-row,
.eyebrow-row,
.rank-card-top,
.warning-card-top,
.major-card-headline,
.form-action-row,
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-chip-row {
  margin-bottom: 20px;
}

.filter-chip,
.feature-tag-row span,
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 600;
  border: 0;
}

.filter-chip.is-active,
.danger-pill {
  background: #fee2e2;
  color: #b91c1c;
}

.stack-list {
  display: grid;
  gap: 16px;
}

.rank-badge,
.major-rank {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 800;
  font-size: 22px;
}

.rank-card-copy,
.detail-hero-copy {
  flex: 1;
}

.rank-card h2,
.warning-card h2,
.archive-card h2,
.notice-list-card h2,
.major-card-rebuilt h2,
.detail-hero-panel h1 {
  margin: 8px 0 10px;
  font-size: 30px;
  line-height: 1.2;
  color: #111827;
}

.rank-card p,
.warning-card p,
.archive-card p,
.notice-list-card p,
.major-card-rebuilt p,
.detail-hero-panel p {
  margin: 0;
  color: var(--muted-foreground);
}

.rank-sub-metric-grid {
  margin-top: -6px;
}

.compact-eyebrow-row {
  margin-top: 10px;
}

.card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.rank-card-top > *:not(.card-overlay-link),
.rank-card .summary-metric-grid,
.rank-card .feature-tag-row,
.warning-card > *,
.archive-card > *,
.notice-list-card > *,
.major-card-rebuilt > * {
  position: relative;
  z-index: 2;
}

.solid-button,
.text-link-button,
.secondary-link-button {
  font-weight: 600;
}

.text-link-button,
.secondary-link-button,
.card-tail-link a {
  color: var(--primary);
}

.major-card-footer-row,
.notice-card-meta,
.direct-contact-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.major-card-footer-row,
.notice-card-meta {
  margin-top: 16px;
  color: var(--muted-foreground);
  font-size: 14px;
}

.major-card-metric-grid {
  margin-bottom: 16px;
}

.notice-card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.notice-card-mini-icon {
  margin-left: auto;
}

.neutral-pill {
  background: #e5e7eb;
  color: #374151;
}

.partnership-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.partnership-program-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.partnership-program-card li + li {
  margin-top: 8px;
}

.dual-copy-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dual-copy-panel article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

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

.report-form-grid label {
  display: grid;
  gap: 8px;
}

.report-form-grid input,
.report-form-grid select,
.report-form-grid textarea,
.secondary-link-button {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--input);
  border-radius: 10px;
  background: #fff;
}

.secondary-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  cursor: pointer;
}

.report-form-grid select {
  appearance: none;
}

.agreement-row {
  align-items: flex-start;
}

.agreement-row input {
  width: auto;
  margin-top: 4px;
}

.full-span {
  grid-column: 1 / -1;
}

.panel {
  padding: 24px;
}

.internal-intro-panel,
.major-intro-panel,
.guide-panel,
.table-panel,
.major-info-panel,
.notice-panel-header,
.notice-body-panel,
.notice-action-panel,
.notice-pagination-panel {
  margin-bottom: 24px;
}

.internal-intro-panel h1,
.major-intro-panel h1 {
  font-size: 30px;
  margin-bottom: 8px;
}

.internal-intro-panel p,
.major-intro-panel > p {
  margin: 0;
  font-size: 16px;
}

.guide-panel h2,
.major-info-panel h2 {
  margin-bottom: 18px;
  font-size: 24px;
}

.guide-item {
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f9fafb;
}

.guide-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-item strong {
  font-size: 15px;
  font-weight: 700;
}

.guide-item span {
  font-size: 14px;
  color: var(--muted-foreground);
}

.pagination-row {
  display: flex;
  gap: 10px;
  margin: 8px 0 24px;
}

.comparison-table,
.notice-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td,
.notice-table th,
.notice-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.comparison-table th,
.notice-table th {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  background: #f9fafb;
}

.comparison-table td {
  font-size: 15px;
  color: var(--foreground);
}

.comparison-table td.center {
  text-align: center;
}

.site-name-cell,
.rating-cell {
  display: flex;
  align-items: center;
}

.rating-cell {
  gap: 6px;
  font-weight: 600;
}

.tip-panel {
  padding: 24px;
  border-radius: 12px;
  background: #eff6ff;
}

.tip-panel h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.tip-panel li,
.major-criteria li,
.notice-prose li {
  list-style: none;
  position: relative;
  padding-left: 16px;
}

.tip-panel li::before,
.major-criteria li::before,
.notice-prose ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: currentColor;
}

.direct-contact-list {
  align-items: stretch;
  margin-top: 16px;
}

.direct-contact-list > div {
  flex: 1 1 180px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.direct-contact-copy {
  margin: 14px 0 0;
}

.notice-emphasis-box {
  margin: 18px 0 24px;
  padding: 18px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.notice-emphasis-box strong {
  display: block;
  margin-bottom: 10px;
  color: #9a3412;
}

.notice-emphasis-box ul {
  margin: 0;
  padding-left: 18px;
}

.major-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 0;
}

.major-stat-item {
  padding: 18px 20px;
  border-radius: 12px;
  background: #f9fafb;
}

.major-stat-value-wrap {
  gap: 10px;
  margin-bottom: 6px;
}

.major-stat-value-wrap strong {
  font-size: 28px;
  line-height: 1;
  color: #111827;
}

.major-stat-item p {
  margin: 0;
}

.major-criteria {
  margin-top: 8px;
}

.major-criteria h3,
.notice-prose h2,
.major-info-grid h3,
.sidebar-card-title,
.sidebar-card-title-danger {
  font-size: 20px;
  font-weight: 700;
}

.major-criteria h3 {
  margin: 0 0 12px;
}

.major-card-list {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.major-card {
  padding: 24px;
}

.major-card-top,
.major-card-main,
.major-card-footer,
.notice-pagination-link,
.recent-scam-item,
.sidebar-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.major-card-main {
  gap: 16px;
}

.major-rank {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #111827;
}

.major-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.major-title-row span {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

.major-meta-row {
  gap: 16px;
  flex-wrap: wrap;
}

.major-meta-row > div {
  gap: 6px;
  color: var(--foreground);
  font-size: 15px;
}

.plain-meta {
  color: var(--muted-foreground) !important;
}

.major-go-button {
  min-width: 88px;
  padding: 10px 16px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
}

.major-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.major-feature-row > div {
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f9fafb;
  color: var(--foreground);
  font-size: 14px;
}

.major-card-footer span {
  color: var(--muted-foreground);
}

.major-card-footer a,
.notice-prose a {
  color: var(--primary);
  font-weight: 600;
}

.major-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.major-info-grid article {
  padding: 8px 0;
}

.major-info-grid p {
  margin: 8px 0 0;
}

.notice-article.panelless {
  margin: 0;
}

.notice-flags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.notice-flag {
  gap: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.notice-flag-pin {
  background: #dbeafe;
  color: #1d4ed8;
}

.notice-flag-alert {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}

.notice-header h1 {
  font-size: 38px;
  margin-bottom: 16px;
}

.notice-meta {
  gap: 24px;
}

.notice-meta > div {
  gap: 6px;
}

.notice-prose h2 {
  margin: 32px 0 16px;
}

.notice-prose h2:first-child {
  margin-top: 0;
}

.notice-prose p,
.notice-prose ul,
.notice-prose ol,
.notice-table {
  margin: 0 0 16px;
}

.notice-prose ol {
  padding-left: 20px;
}

.notice-prose ol li {
  list-style: decimal;
  padding-left: 0;
}

.notice-prose ol li::before {
  content: none;
}

.notice-alert-box {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  margin-bottom: 16px;
}

.notice-alert-box strong {
  color: #1d4ed8;
}

.notice-alert-box ul {
  margin: 0;
}

.notice-table th,
.notice-table td {
  border: 1px solid var(--border);
}

.notice-action-panel {
  display: flex;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.notice-primary-link,
.notice-secondary-link {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
}

.notice-primary-link {
  background: #dc2626;
  color: #fff;
}

.notice-secondary-link {
  background: #f3f4f6;
  color: #374151;
}

.notice-pagination-link {
  gap: 12px;
  padding: 8px 0;
}

.notice-pagination-link p {
  font-size: 16px;
  font-weight: 500;
}

.notice-pagination-icon {
  width: 18px;
  height: 18px;
}

.notice-pagination-icon-left {
  transform: rotate(135deg);
}

.notice-pagination-icon-right {
  transform: rotate(-45deg);
}

.internal-sidebar-stack {
  display: grid;
  gap: 24px;
}

.sidebar-card {
  padding: 24px;
  background: var(--sidebar);
  border: 1px solid var(--sidebar-border);
}

.sidebar-card-danger {
  background: rgba(254, 242, 242, 0.8);
  border-color: #fecaca;
}

.sidebar-card-primary-soft {
  background: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.20);
}

.sidebar-card-title,
.sidebar-card-title-danger {
  margin-bottom: 16px;
}

.sidebar-card-title-danger {
  gap: 8px;
  color: #b91c1c;
}

.recent-scam-item,
.popular-post-item,
.sidebar-category-item {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.recent-scam-item:last-child,
.popular-post-item:last-child,
.sidebar-category-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.popular-post-tag {
  margin-bottom: 4px;
}

.popular-post-item h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.popular-post-item p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted-foreground);
}

.sidebar-category-label {
  gap: 8px;
}

.sidebar-cta-box p {
  margin: 0 0 14px;
}

.full-width-button {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}

.danger-button {
  background: #dc2626;
  color: #fff;
}

.primary-button {
  background: var(--primary);
  color: #fff;
}

.neutral-button {
  background: var(--secondary);
  color: var(--foreground);
}

.sidebar-input {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid var(--input);
  border-radius: 8px;
  background: #fff;
}

.simple-generic-layout {
  padding-top: 32px;
  padding-bottom: 48px;
}

.simple-generic-panel h1 {
  margin-top: 0;
}

.simple-generic-content {
  color: var(--muted-foreground);
}

.direct-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.direct-contact-list > div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

@media (max-width: 1200px) {
  .home-hero-title {
    font-size: 42px;
  }

  .major-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .mobile-menu-button {
    display: inline-flex;
  }

  .internal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .internal-aside {
    width: 100%;
    max-width: none;
  }

  .home-hero-grid,
  .footer-grid,
  .feature-card-grid,
  .recent-post-grid,
  .guide-grid,
  .major-info-grid,
  .process-grid,
  .home-stats-grid,
  .major-stat-grid,
  .trust-strip-panel,
  .summary-metric-grid,
  .report-form-grid,
  .dual-copy-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-hero-grid,
  .footer-grid,
  .feature-card-grid,
  .recent-post-grid,
  .guide-grid,
  .major-info-grid,
  .process-grid,
  .home-stats-grid,
  .major-stat-grid,
  .major-feature-row,
  .trust-strip-panel,
  .summary-metric-grid,
  .report-form-grid,
  .dual-copy-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero {
    padding-top: 8px;
  }

  .home-hero-grid {
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .home-hero-title {
    font-size: 34px;
  }

  .recent-header,
  .notice-action-panel,
  .rank-card-top,
  .major-card-headline,
  .major-card-top,
  .major-card-main,
  .major-card-footer,
  .notice-pagination-link,
  .header-inner,
  .header-left,
  .header-right {
    flex-direction: column;
    align-items: stretch;
  }

  .header-inner,
  .header-left {
    gap: 12px;
  }

  .floating-alert-button {
    top: auto;
    right: 12px;
    bottom: 16px;
    left: 12px;
    justify-content: center;
  }

  .notice-header h1 {
    font-size: 30px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .rank-card h2,
  .warning-card h2,
  .archive-card h2,
  .notice-list-card h2,
  .major-card-rebuilt h2,
  .detail-hero-panel h1,
  .notice-header h1 {
    font-size: 26px;
  }
}
