﻿/* ===== 基础 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: #3d3228;
  background: #faf7f4;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== 顶部导航 ===== */
.header {
  background: #fffdfb;
  border-bottom: 1px solid #eee5dd;
  padding: 12px 0;
}

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

.logo-img {
  width: 28px;
  height: 28px;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #c97d8f;
  letter-spacing: 2px;
}

/* ===== Hero ===== */
.hero {
  padding: 80px 24px 64px;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: #5a4a3a;
  letter-spacing: 6px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 16px;
  color: #8c7b6e;
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== 作品区 ===== */
.works {
  padding: 48px 0 80px;
}

.works h2 {
  font-size: 14px;
  font-weight: 500;
  color: #a89a8c;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.works-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===== 作品卡片 ===== */
.work-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fffdfb;
  border: 1px solid #eee5dd;
  border-radius: 8px;
  padding: 22px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.work-card:hover {
  border-color: #d4b8c0;
  box-shadow: 0 2px 12px rgba(201,125,143,0.08);
}

.work-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fdf3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.work-icon img {
  width: 32px;
  height: 32px;
}

.work-info {
  min-width: 0;
}

.work-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #5a4a3a;
  margin-bottom: 3px;
}

.work-tag {
  font-size: 12px;
  color: #c97d8f;
  margin-bottom: 4px;
}

.work-desc {
  font-size: 13px;
  color: #8c7b6e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== 即将上线卡片 ===== */
.work-card--soon {
  cursor: default;
  opacity: 0.55;
}

.work-card--soon:hover {
  border-color: #eee5dd;
  box-shadow: none;
}

.work-icon--soon {
  font-size: 24px;
  background: #f5f2ef;
}

/* ===== 底部 ===== */
.footer {
  margin-top: auto;
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid #eee5dd;
}

.footer p {
  font-size: 13px;
  color: #a89a8c;
}

/* ===== 移动端 ===== */
@media (max-width: 600px) {
  .hero { padding: 56px 16px 48px; }
  .hero h1 { font-size: 26px; letter-spacing: 4px; }
  .hero-sub { font-size: 15px; }
  .work-card { padding: 18px 16px; gap: 14px; }
  .work-desc { white-space: normal; }
}