:root {
  --bg: #fff7f1;
  --bg-soft: #fffdf9;
  --card: #ffffff;
  --card-2: #fffaf5;
  --muted: #6b7280;
  --text: #1f2937;
  --title: #111827;
  --accent: #ffb703;
  --accent-2: #fb8500;
  --accent-3: #f43f5e;
  --border: #f0dfd2;
  --shadow-sm: 0 8px 20px rgba(80, 50, 20, 0.06);
  --shadow-md: 0 16px 40px rgba(80, 50, 20, 0.1);
  --shadow-lg: 0 22px 60px rgba(80, 50, 20, 0.14);
  --radius: 18px;
  --radius-lg: 24px;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 183, 3, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(244, 63, 94, 0.07), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  color: var(--text);
  line-height: 1.65;
}

a { color: var(--accent-2); text-decoration: none; transition: color 0.2s ease; } a:hover { color: var(--accent-3); text-decoration: none; }

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

header {
  border-bottom: 1px solid rgba(240, 223, 210, 0.9);
  background: rgba(255, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  z-index: 30;
  box-shadow: 0 4px 16px rgba(70, 40, 20, 0.04);
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex: 1;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(251, 133, 0, 0.08);
  color: var(--accent-2);
}

.hero {
  padding-top: 26px;
padding-bottom: 16px;
padding-left: 10px;
padding-right: 10px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--title);
  letter-spacing: -0.03em;
}

.hero p {
  color: var(--muted);
  font-size: 1.06rem;
}

.badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(255, 183, 3, 0.16), rgba(251, 133, 0, 0.13));
  border: 1px solid rgba(251, 133, 0, 0.22);
  color: #a55b00;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: linear-gradient(180deg, var(--card) 0%, var(--card-2) 100%);
  border: none;
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card h2 {
  font-size: 1.35rem;
}

.card h3 {
  font-size: 1.1rem;
}

.card h2,
.card h3 {
  margin-top: 0;
  color: var(--title);
  text-decoration: none;
  text-underline-offset: 4px;
  transition: text-decoration 0.2s ease;
}

.card:hover h2,
.card:hover h3,
.card:active h2,
.card:active h3 {
  text-decoration: underline;
}

.card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 4px;
}

.section {
  padding: 20px 0 36px;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--title);
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
  margin: 0 0 24px;
}

.muted {
  color: var(--muted);
}

.button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #2e1a00;
  font-weight: 800;
  padding: 13px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(251, 133, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(251, 133, 0, 0.28);
  color: #2e1a00;
}

.button.secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumbs {
  font-size: 0.95rem;
  color: var(--muted);
  padding: 18px 0 0;
}

.breadcrumbs a {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

th,
td {
  border: 1px solid var(--border);
  padding: 12px;
  text-align: left;
}

th {
  background: #fff1e6;
  color: var(--title);
}

.notice {
  background: linear-gradient(180deg, rgba(255, 183, 3, 0.11), rgba(255, 183, 3, 0.04));
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  border-radius: 14px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 52px;
  margin-top: 44px;
  color: var(--muted);
}

.small {
  font-size: 0.92rem;
}

.article h2 {
  margin-top: 36px;
}

.article h3 {
  margin-top: 28px;
}

.amazon-box {
  border: 1px solid rgba(255, 183, 3, 0.28);
  background: linear-gradient(180deg, rgba(255, 183, 3, 0.09), rgba(255, 183, 3, 0.03));
}

.keyword-chip {
  display: inline-block;
  margin: 6px 8px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: #fff;
}

.hero-banner {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
}

.hero-banner img,
.site-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

.anime-banner,
.category-banner,
.section-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: #fff;
}

.anime-banner img,
.category-banner img,
.section-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.card-link,
.banner-link {
  display: block;
}

.card-link:hover,
.banner-link:hover {
  text-decoration: none;
}

.card-link:hover .card h2,
.card-link:hover .card h3,
.card-link:active .card h2,
.card-link:active .card h3 {
  text-decoration: underline;
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 20px, var(--max));
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 5x
  }

  .site-logo {
    height: 44px;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 20px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
  }

  .hero-banner {
    height: 100px;
    border-radius: 18px;
  }

  .hero-banner img,
  .site-hero-image {
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }

  .card {
    padding: 18px;
    border-radius: 16px;
  }

  .card:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .card img {
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .anime-banner,
  .category-banner,
  .section-banner {
    border-radius: 18px;
  }

  table {
    min-width: 620px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.95rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .cta-row {
    flex-direction: column;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    padding: 6px 6px;
  }
}
