/* ============================================
   女性向花园 (Female Garden) - 核心样式
   CSS前缀: fg-
   ============================================ */

/* === 字体引入 === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&family=Noto+Serif+SC:wght@400;600;700&family=Noto+Sans+SC:wght@300;400;500;600&display=swap');

/* === CSS变量 === */
:root {
  --fg-primary: #fdeef4;
  --fg-secondary: #e8f5e9;
  --fg-accent: #d1c4e9;
  --fg-text: #6d4c41;
  --fg-link: #b48ead;
  --fg-white: #ffffff;
  --fg-dark: #4e342e;
  --fg-light-pink: #fce4ec;
  --fg-soft-rose: #f8bbd0;
  --fg-lavender: #ede7f6;
  --fg-mint: #c8e6c9;
  --fg-gold: #d4a574;
  --fg-shadow: rgba(180, 142, 173, 0.15);
  --fg-font-heading: 'Playfair Display', 'Noto Serif SC', serif;
  --fg-font-body: 'Montserrat', 'Noto Sans SC', sans-serif;
  --fg-radius: 12px;
  --fg-radius-lg: 20px;
  --fg-transition: all 0.3s ease;
}

/* === 干扰标签隐藏 === */
.rose-jammer-block {
  display: none;
}

/* === 全局重置 === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--fg-font-body);
  color: var(--fg-text);
  background-color: var(--fg-primary);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--fg-link);
  text-decoration: none;
  transition: var(--fg-transition);
}

a:hover {
  color: var(--fg-dark);
  transform: scale(1.02);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fg-font-heading);
  color: var(--fg-dark);
  line-height: 1.4;
}

ul, ol {
  list-style: none;
}

/* === 导航栏 === */
#fg-header {
  background-color: var(--fg-secondary);
  padding: 0;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 15px var(--fg-shadow);
}

.fg-nav-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

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

.fg-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.fg-logo-text {
  font-family: var(--fg-font-heading);
  font-size: 1.3rem;
  color: var(--fg-dark);
  font-weight: 700;
}

.fg-nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.fg-nav-link {
  font-family: var(--fg-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-text);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
}

.fg-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fg-link), var(--fg-accent));
  transition: width 0.4s ease;
  border-radius: 2px;
}

.fg-nav-link:hover {
  color: var(--fg-link);
  transform: none;
}

.fg-nav-link:hover::after {
  width: 100%;
}

/* 汉堡菜单 */
.fg-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

.fg-hamburger span {
  width: 26px;
  height: 2.5px;
  background-color: var(--fg-dark);
  border-radius: 3px;
  transition: var(--fg-transition);
}

.fg-hamburger.fg-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.fg-hamburger.fg-active span:nth-child(2) {
  opacity: 0;
}

.fg-hamburger.fg-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* 移动端侧边菜单 */
.fg-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fg-mobile-overlay.fg-visible {
  opacity: 1;
}

.fg-mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: linear-gradient(135deg, rgba(253, 238, 244, 0.95), rgba(232, 245, 233, 0.95));
  backdrop-filter: blur(20px);
  z-index: 160;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

.fg-mobile-menu.fg-open {
  right: 0;
}

.fg-mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  color: var(--fg-text);
  border-bottom: 1px solid rgba(180, 142, 173, 0.2);
  font-weight: 500;
}

.fg-mobile-menu a:hover {
  color: var(--fg-link);
  padding-left: 10px;
}

/* === 通用容器 === */
.fg-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.fg-section {
  padding: 60px 0;
}

.fg-section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--fg-dark);
  position: relative;
}

.fg-section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--fg-link);
  margin-bottom: 40px;
  font-style: italic;
  font-family: var(--fg-font-heading);
}

.fg-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--fg-soft-rose), var(--fg-accent));
  margin: 12px auto 0;
  border-radius: 3px;
}

/* === 花语推荐模块 === */
.fg-flower-rec {
  background: linear-gradient(135deg, var(--fg-primary), var(--fg-lavender));
  border-radius: var(--fg-radius-lg);
  overflow: hidden;
  position: relative;
}

.fg-flower-rec-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 50px;
  align-items: center;
}

.fg-flower-left {
  text-align: center;
}

.fg-flower-left img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 30px var(--fg-shadow);
}

.fg-flower-name {
  font-family: var(--fg-font-heading);
  font-size: 1.6rem;
  color: var(--fg-dark);
  margin-bottom: 8px;
}

.fg-flower-meaning {
  font-style: italic;
  color: var(--fg-link);
  font-size: 0.95rem;
}

.fg-flower-right {
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--fg-radius);
  padding: 30px;
  backdrop-filter: blur(10px);
}

.fg-flower-right img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--fg-radius);
  margin-bottom: 16px;
}

.fg-flower-right h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.fg-flower-right p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--fg-text);
}

/* === 广播剧场模块 === */
.fg-audio-drama {
  background: var(--fg-white);
}

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

.fg-drama-card {
  background: var(--fg-primary);
  border-radius: var(--fg-radius);
  overflow: hidden;
  transition: var(--fg-transition);
  box-shadow: 0 4px 15px var(--fg-shadow);
}

.fg-drama-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px var(--fg-shadow);
}

.fg-drama-poster {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.fg-drama-info {
  padding: 18px;
}

.fg-drama-title {
  font-family: var(--fg-font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--fg-dark);
}

.fg-drama-cv {
  font-size: 0.82rem;
  color: var(--fg-link);
  margin-bottom: 6px;
}

.fg-drama-episode {
  font-size: 0.8rem;
  color: #999;
}

.fg-drama-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--fg-link), var(--fg-accent));
  color: var(--fg-white);
  border-radius: 20px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--fg-transition);
}

.fg-drama-play-btn:hover {
  opacity: 0.85;
  color: var(--fg-white);
}

/* === 小说书架模块 === */
.fg-novel-shelf {
  background: linear-gradient(180deg, var(--fg-lavender) 0%, var(--fg-primary) 100%);
}

.fg-shelf-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.fg-shelf-tab {
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--fg-transition);
  background: rgba(255, 255, 255, 0.6);
  color: var(--fg-text);
  border: 1px solid rgba(180, 142, 173, 0.3);
}

.fg-shelf-tab.fg-active,
.fg-shelf-tab:hover {
  background: linear-gradient(135deg, var(--fg-link), var(--fg-accent));
  color: var(--fg-white);
  border-color: transparent;
}

.fg-book-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.fg-book-card {
  text-align: center;
  transition: var(--fg-transition);
}

.fg-book-card:hover {
  transform: translateY(-5px);
}

.fg-book-cover {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--fg-radius);
  box-shadow: 0 6px 20px var(--fg-shadow);
  margin-bottom: 12px;
}

.fg-book-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg-dark);
  margin-bottom: 4px;
}

.fg-book-author {
  font-size: 0.82rem;
  color: var(--fg-link);
}

/* === 同人创作模块 === */
.fg-fan-works {
  background: var(--fg-white);
}

.fg-waterfall {
  column-count: 3;
  column-gap: 24px;
}

.fg-waterfall-item {
  break-inside: avoid;
  margin-bottom: 24px;
  background: var(--fg-primary);
  border-radius: var(--fg-radius);
  overflow: hidden;
  box-shadow: 0 4px 15px var(--fg-shadow);
  transition: var(--fg-transition);
}

.fg-waterfall-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px var(--fg-shadow);
}

.fg-waterfall-img {
  width: 100%;
  display: block;
}

.fg-waterfall-info {
  padding: 16px;
}

.fg-waterfall-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--fg-dark);
}

.fg-waterfall-desc {
  font-size: 0.85rem;
  color: var(--fg-text);
  line-height: 1.6;
}

.fg-waterfall-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--fg-link);
}

/* === 男神图鉴模块 === */
.fg-guy-gallery {
  background: linear-gradient(135deg, var(--fg-primary), var(--fg-light-pink));
}

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

.fg-gallery-card {
  position: relative;
  border-radius: var(--fg-radius);
  overflow: hidden;
  box-shadow: 0 6px 20px var(--fg-shadow);
  transition: var(--fg-transition);
}

.fg-gallery-card:hover {
  transform: scale(1.03);
}

.fg-gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.fg-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--fg-white);
}

.fg-gallery-name {
  font-family: var(--fg-font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.fg-gallery-votes {
  font-size: 0.82rem;
  opacity: 0.9;
}

.fg-vote-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  color: var(--fg-white);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--fg-transition);
}

.fg-vote-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  color: var(--fg-white);
}

/* === 女性话题模块 === */
.fg-topics {
  background: var(--fg-white);
}

.fg-topic-list {
  max-width: 900px;
  margin: 0 auto;
}

.fg-topic-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(180, 142, 173, 0.15);
  transition: var(--fg-transition);
  border-radius: var(--fg-radius);
  margin-bottom: 8px;
}

.fg-topic-item:hover {
  background: var(--fg-primary);
}

.fg-topic-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg-dark);
  margin-bottom: 4px;
}

.fg-topic-meta {
  font-size: 0.82rem;
  color: #999;
}

.fg-topic-count {
  text-align: right;
  font-size: 0.85rem;
  color: var(--fg-link);
  white-space: nowrap;
}

/* === 花园会员模块 === */
.fg-membership {
  background: linear-gradient(135deg, var(--fg-lavender), var(--fg-primary));
}

.fg-member-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.fg-member-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--fg-radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 6px 25px var(--fg-shadow);
  transition: var(--fg-transition);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 142, 173, 0.2);
}

.fg-member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--fg-shadow);
}

.fg-member-card.fg-featured {
  background: linear-gradient(135deg, var(--fg-soft-rose), var(--fg-accent));
  color: var(--fg-white);
  transform: scale(1.05);
}

.fg-member-card.fg-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.fg-member-card.fg-featured .fg-member-name,
.fg-member-card.fg-featured .fg-member-price,
.fg-member-card.fg-featured .fg-member-feature {
  color: var(--fg-white);
}

.fg-member-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.fg-member-name {
  font-family: var(--fg-font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--fg-dark);
}

.fg-member-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg-link);
  margin-bottom: 20px;
}

.fg-member-price small {
  font-size: 0.8rem;
  font-weight: 400;
}

.fg-member-features {
  margin-bottom: 24px;
}

.fg-member-feature {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--fg-text);
  border-bottom: 1px dashed rgba(180, 142, 173, 0.2);
}

.fg-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--fg-transition);
  border: none;
  text-decoration: none;
}

.fg-btn-primary {
  background: linear-gradient(135deg, var(--fg-link), var(--fg-accent));
  color: var(--fg-white);
  box-shadow: 0 4px 15px rgba(180, 142, 173, 0.3);
}

.fg-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: var(--fg-white);
}

.fg-btn-outline {
  background: transparent;
  color: var(--fg-link);
  border: 2px solid var(--fg-link);
}

.fg-btn-outline:hover {
  background: var(--fg-link);
  color: var(--fg-white);
}

.fg-member-card.fg-featured .fg-btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--fg-link);
}

/* === 作者招募模块 === */
.fg-recruitment {
  background: var(--fg-white);
}

.fg-recruit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.fg-recruit-card {
  background: var(--fg-primary);
  border-radius: var(--fg-radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--fg-transition);
  box-shadow: 0 4px 15px var(--fg-shadow);
}

.fg-recruit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px var(--fg-shadow);
}

.fg-recruit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.fg-recruit-role {
  font-family: var(--fg-font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--fg-dark);
}

.fg-recruit-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-text);
  margin-bottom: 20px;
}

/* === APP下载模块 === */
.fg-app-download {
  background: linear-gradient(135deg, var(--fg-primary), var(--fg-secondary));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fg-app-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.fg-app-mockup {
  width: 280px;
  border-radius: 30px;
  box-shadow: 0 20px 60px var(--fg-shadow);
}

.fg-app-text h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.fg-app-text p {
  font-size: 1.05rem;
  color: var(--fg-link);
  margin-bottom: 30px;
  font-style: italic;
}

.fg-app-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.fg-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--fg-dark);
  color: var(--fg-white);
  border-radius: 30px;
  font-size: 0.95rem;
  transition: var(--fg-transition);
}

.fg-app-btn:hover {
  background: var(--fg-link);
  color: var(--fg-white);
}

.fg-app-btn svg {
  width: 22px;
  height: 22px;
}

/* === 花园公约模块 === */
.fg-convention {
  background: var(--fg-secondary);
  padding: 50px 0;
}

.fg-convention-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.fg-convention-item {
  text-align: center;
  padding: 24px 16px;
}

.fg-convention-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.fg-convention-name {
  font-family: var(--fg-font-heading);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--fg-dark);
}

.fg-convention-desc {
  font-size: 0.85rem;
  color: var(--fg-text);
  line-height: 1.6;
}

/* === 页脚 === */
#fg-footer {
  background: var(--fg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 50px 0 0;
}

.fg-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.fg-footer-col h4 {
  font-family: var(--fg-font-heading);
  color: var(--fg-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.fg-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--fg-link);
}

.fg-footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  font-size: 0.9rem;
  transition: var(--fg-transition);
}

.fg-footer-col a:hover {
  color: var(--fg-link);
  padding-left: 6px;
}

.fg-social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.fg-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--fg-transition);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.fg-social-link:hover {
  background: var(--fg-link);
  color: var(--fg-white);
}

.fg-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 1200px;
  margin: 0 auto;
}

.fg-footer-bottom p {
  margin-bottom: 4px;
}

/* === 内页通用 === */
.fg-page-hero {
  background: linear-gradient(135deg, var(--fg-primary), var(--fg-lavender));
  padding: 60px 0 40px;
  text-align: center;
}

.fg-page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.fg-page-hero p {
  font-size: 1rem;
  color: var(--fg-link);
  font-style: italic;
}

.fg-page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}

.fg-article-card {
  background: var(--fg-white);
  border-radius: var(--fg-radius);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px var(--fg-shadow);
  transition: var(--fg-transition);
}

.fg-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--fg-shadow);
}

.fg-article-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.fg-article-body {
  padding: 24px;
}

.fg-article-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--fg-dark);
}

.fg-article-excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-text);
  margin-bottom: 14px;
}

.fg-article-meta {
  font-size: 0.82rem;
  color: #999;
}

/* === APP下载独立页 === */
.fg-app-page-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fg-primary) 0%, var(--fg-lavender) 50%, var(--fg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.fg-app-page-content {
  text-align: center;
  z-index: 2;
  padding: 40px;
}

.fg-app-page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--fg-dark), var(--fg-link));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fg-app-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 50px auto;
}

.fg-app-feature {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--fg-radius-lg);
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  transition: var(--fg-transition);
}

.fg-app-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--fg-shadow);
}

.fg-app-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.fg-app-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.fg-app-feature p {
  font-size: 0.88rem;
  color: var(--fg-text);
}

/* === 面包屑 === */
.fg-breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
  color: #999;
}

.fg-breadcrumb a {
  color: var(--fg-link);
}

.fg-breadcrumb span {
  margin: 0 8px;
  color: #ccc;
}

/* === 长文内容页 === */
.fg-content-body {
  font-size: 1rem;
  line-height: 2;
  color: var(--fg-text);
}

.fg-content-body p {
  margin-bottom: 20px;
  text-indent: 2em;
}

.fg-content-body img {
  border-radius: var(--fg-radius);
  margin: 24px auto;
  box-shadow: 0 4px 15px var(--fg-shadow);
}

.fg-content-body h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--fg-soft-rose);
}

.fg-content-body h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
  color: var(--fg-link);
}

/* === 响应式设计 === */

/* 1024px */
@media (max-width: 1024px) {
  .fg-drama-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fg-book-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fg-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fg-waterfall {
    column-count: 2;
  }

  .fg-member-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .fg-member-card.fg-featured {
    transform: none;
  }

  .fg-recruit-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .fg-app-features {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* 768px */
@media (max-width: 768px) {
  .fg-nav-menu {
    display: none;
  }

  .fg-hamburger {
    display: flex;
  }

  .fg-mobile-overlay {
    display: block;
    pointer-events: none;
  }

  .fg-mobile-overlay.fg-visible {
    pointer-events: auto;
  }

  .fg-flower-rec-inner {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 24px;
  }

  .fg-flower-left img {
    width: 200px;
    height: 200px;
  }

  .fg-drama-grid {
    grid-template-columns: 1fr;
  }

  .fg-book-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fg-gallery-grid {
    grid-template-columns: 1fr;
  }

  .fg-waterfall {
    column-count: 1;
  }

  .fg-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fg-footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .fg-social-links {
    justify-content: center;
  }

  .fg-convention-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fg-section-title {
    font-size: 1.6rem;
  }

  .fg-section {
    padding: 40px 0;
  }

  .fg-app-inner {
    gap: 30px;
  }

  .fg-app-mockup {
    width: 220px;
  }

  .fg-app-page-content h1 {
    font-size: 1.8rem;
  }
}

/* 360px */
@media (max-width: 400px) {
  html {
    font-size: 14px;
  }

  .fg-book-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .fg-book-cover {
    height: 180px;
  }

  .fg-convention-grid {
    grid-template-columns: 1fr;
  }

  .fg-shelf-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .fg-app-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* === 花瓣飘落动画 === */
@keyframes fg-petal-fall {
  0% {
    transform: translateY(-10vh) rotate(0deg) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(720deg) translateX(100px);
    opacity: 0;
  }
}

.fg-petal {
  position: fixed;
  top: -50px;
  pointer-events: none;
  z-index: 9999;
  animation: fg-petal-fall linear forwards;
  opacity: 0.6;
  font-size: 1.2rem;
}

/* === 页面淡入动画 === */
@keyframes fg-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fg-animate {
  opacity: 0;
  animation: fg-fadeInUp 0.8s ease forwards;
}

.fg-delay-1 { animation-delay: 0.1s; }
.fg-delay-2 { animation-delay: 0.2s; }
.fg-delay-3 { animation-delay: 0.3s; }
.fg-delay-4 { animation-delay: 0.4s; }
