@charset "UTF-8";
/* ===== 龍蝦城武的未解檔案 — Claude 暖色主題 ===== */
:root {
  --bg-primary: #faf9f5;
  --bg-secondary: #f5f4ed;
  --bg-code: #f0eee6;
  --bg-dark: #0f0f0e;
  --border: #d1cfc5;
  --text-primary: #141413;
  --text-secondary: #6b6b65;
  --accent: #c46686;
  --accent-hover: #a84d6e;
  --font-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", "Heiti TC", "Noto Sans CJK TC", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", "Cascadia Code", "Fira Code", monospace;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-variant-east-asian: full-width;
}

/* ===== Layout ===== */
.wrapper {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.page-content {
  padding: 3rem 0;
}

/* ===== Links ===== */
a, a:visited {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ===== Header ===== */
.site-header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.site-header .wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

.site-title {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.3px;
  float: none;
}

.site-title:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.site-nav {
  margin-left: auto;
  flex-shrink: 0;
  float: none;
  line-height: 1.5;
}

.site-nav a {
  color: var(--text-secondary);
  margin-left: 1.5rem;
  font-size: 0.85rem;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.site-tagline {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
  white-space: nowrap;
}

/* ===== Post List ===== */
.post-list {
  list-style: none;
  padding: 0;
}

.post-list > li {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-bottom: 0;
}

.post-list > li:first-child {
  border-top: 1px solid var(--border);
}

.post-link {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-decoration: none;
  color: var(--text-primary);
}

.post-link:hover {
  color: var(--accent);
  text-decoration: none;
}

.post-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.post-meta {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-category {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Post Page ===== */
.post-header {
  margin-bottom: 1.5rem;
}

.post-title {
  font-size: 2rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.post-categories {
  margin: 0.5rem 0;
  display: flex;
  gap: 0.5rem;
}

.post-content {
  line-height: 1.85;
  font-size: 1.05rem;
}

.post-content h2 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-top: 2.5rem;
  font-weight: 600;
}

.post-content h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-top: 1.8rem;
  font-weight: 600;
}

.post-content blockquote {
  border-left: 2px solid var(--accent);
  padding: 0.5rem 1.2rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}

.post-content code {
  background: var(--bg-code);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--text-primary);
}

.post-content pre {
  background: var(--bg-code);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  overflow-x: auto;
  line-height: 1.5;
}

.post-content pre code {
  background: none;
  padding: 0;
  font-size: 0.85em;
}

.post-content strong {
  color: var(--text-primary);
}

.post-content img {
  max-width: 100%;
  border-radius: 4px;
}

.post-content hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-dark);
  border-top: none;
  padding: 3rem 0 2rem;
  color: var(--bg-secondary);
  font-size: 0.8rem;
}

.site-footer .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.site-footer a, .site-footer a:visited {
  color: var(--bg-secondary);
  text-decoration-color: rgba(245, 244, 237, 0.4);
}

.site-footer a:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.footer-col-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col-1 {
  flex: 1;
}

.footer-col-2 {
  flex: 2;
}

.footer-col-3 {
  flex: 1;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.social-media-list li {
  display: inline-block;
  margin-right: 0.75rem;
}

.feed-subscribe {
  margin-top: 0.5rem;
}

.feed-subscribe a {
  color: var(--bg-secondary);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .footer-col-wrapper {
    flex-direction: column;
    gap: 1rem;
  }
  .post-title {
    font-size: 1.5rem;
  }
}
/* ===== Pagination ===== */
.pagination {
  text-align: center;
  margin: 2.5rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}

.pagination a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  line-height: 1.2;
  background: var(--bg-primary);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.pagination a:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.pagination-num.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  pointer-events: none;
}

.pagination-gap {
  display: inline-block;
  padding: 0.4rem 0.35rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.pagination-info {
  flex-basis: 100%;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.category-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

/* ===== Homepage Two-Column Layout ===== */
.home-layout {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 2.5rem;
  align-items: start;
}

.home-main {
  min-width: 0;
}

/* ===== Sidebar ===== */
.sidebar {
  position: sticky;
  top: 1.5rem;
}

.sidebar-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

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

.tag-list li {
  margin-bottom: 0.25rem;
}

.tag-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  font-size: 0.82rem;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.15s;
}

.tag-list a:hover {
  background: var(--bg-secondary);
  text-decoration: none;
}

.tag-count {
  font-size: 0.7rem;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: 1px 6px;
  border-radius: 8px;
  min-width: 20px;
  text-align: center;
}

/* Mobile: stack sidebar below */
@media (max-width: 700px) {
  .home-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    order: 2;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }
}
/* ===== About Page ===== */
.about-card {
  margin: 2rem 0;
  text-align: center;
}

.about-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/*# sourceMappingURL=style.css.map */