/* ===========================
   樱花视频在线观看 - 樱花粉清新风格
   =========================== */

/* 字体引入 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=ZCOOL+XiaoWei&display=swap');

/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #ffb7c5;
    --color-primary-dark: #ff69b4;
    --color-accent: #e91e63;
    --color-bg: #fff0f5;
    --color-bg-card: #ffffff;
    --color-bg-soft: #ffe4ec;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-border: #ffd6e0;
    --color-white: #ffffff;
    --gradient-pink: linear-gradient(135deg, #ffb7c5 0%, #ff69b4 100%);
    --gradient-soft: linear-gradient(135deg, #fff0f5 0%, #ffe4ec 100%);
    --gradient-button: linear-gradient(135deg, #ff8fab 0%, #ff69b4 100%);
    --shadow-soft: 0 4px 16px rgba(255, 105, 180, 0.15);
    --shadow-card: 0 6px 24px rgba(255, 105, 180, 0.12);
    --shadow-hover: 0 12px 36px rgba(255, 105, 180, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* 樱花瓣装饰背景 */
body::before {
    content: '❀';
    position: fixed;
    top: 10%;
    left: 5%;
    font-size: 80px;
    color: rgba(255, 183, 197, 0.15);
    z-index: 0;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

body::after {
    content: '❀';
    position: fixed;
    bottom: 15%;
    right: 8%;
    font-size: 120px;
    color: rgba(255, 105, 180, 0.1);
    z-index: 0;
    pointer-events: none;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'ZCOOL XiaoWei', 'Noto Sans SC', serif;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-text);
}

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

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

ul {
    list-style: none;
}

/* ===========================
   导航栏
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 240, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 12px rgba(255, 105, 180, 0.08);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 28px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo::before {
    content: '❀';
    color: var(--color-primary-dark);
    font-size: 24px;
}

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

.nav-menu a {
    font-size: 15px;
    color: var(--color-text-light);
    position: relative;
    padding: 8px 4px;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-pink);
    border-radius: 2px;
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.search-box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 9px 18px;
    color: var(--color-text);
    font-size: 14px;
    width: 200px;
    font-family: inherit;
    transition: var(--transition);
}

.search-box:focus {
    outline: none;
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.15);
    width: 240px;
}

.btn-login {
    background: var(--gradient-button);
    color: var(--color-white);
    border: none;
    padding: 9px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 24px;
    cursor: pointer;
}

/* ===========================
   Hero 区域
   =========================== */
.hero {
    position: relative;
    padding: 130px 32px 60px;
    background: var(--gradient-soft);
    overflow: hidden;
}

.hero::before {
    content: '❀';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 200px;
    color: rgba(255, 183, 197, 0.2);
    z-index: 0;
    animation: spin 30s linear infinite;
}

.hero::after {
    content: '❀';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 100px;
    color: rgba(255, 105, 180, 0.1);
    z-index: 0;
    animation: spin 25s linear infinite reverse;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-accent);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-size: 52px;
    color: var(--color-text);
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--color-accent);
}

.hero-desc {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 28px;
    line-height: 1.8;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-button);
    color: var(--color-white);
    border: none;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-accent);
    border: 2px solid var(--color-primary);
    padding: 12px 34px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 4/3;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 183, 197, 0.2) 0%, transparent 100%);
}

/* ===========================
   通用内容区域
   =========================== */
.content-section {
    padding: 50px 32px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 30px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '❀';
    color: var(--color-primary-dark);
    font-size: 26px;
}

.section-more {
    color: var(--color-accent);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.section-more:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px);
}

/* ===========================
   卡片网格
   =========================== */
.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.anime-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

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

.anime-cover {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.anime-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.anime-card:hover .anime-cover img {
    transform: scale(1.06);
}

.anime-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-button);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
}

.anime-score {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-accent);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.anime-info {
    padding: 16px;
}

.anime-title {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.anime-meta {
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.anime-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===========================
   横版卡片
   =========================== */
.landscape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.landscape-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

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

.landscape-cover {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.landscape-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.landscape-card:hover .landscape-cover img {
    transform: scale(1.06);
}

.landscape-info {
    padding: 18px;
}

.landscape-title {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.landscape-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    line-height: 1.6;
}

.landscape-meta {
    font-size: 13px;
    color: var(--color-text-light);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===========================
   排行榜列表
   =========================== */
.ranking-list {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

.ranking-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px dashed var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.ranking-item:last-child {
    border-bottom: none;
}

.ranking-item:hover {
    transform: translateX(8px);
}

.ranking-num {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-muted);
    min-width: 40px;
    text-align: center;
}

.ranking-item:nth-child(1) .ranking-num {
    color: var(--color-accent);
    font-size: 38px;
    text-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.ranking-item:nth-child(2) .ranking-num {
    color: var(--color-primary-dark);
    font-size: 36px;
}

.ranking-item:nth-child(3) .ranking-num {
    color: var(--color-primary);
    font-size: 34px;
}

.ranking-cover {
    width: 70px;
    height: 95px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.ranking-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ranking-info {
    flex: 1;
    min-width: 0;
}

.ranking-name {
    font-size: 17px;
    color: var(--color-text);
    margin-bottom: 6px;
}

.ranking-meta {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.ranking-data {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 500;
}

/* ===========================
   页面标题
   =========================== */
.page-header {
    padding: 130px 32px 50px;
    background: var(--gradient-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '❀';
    position: absolute;
    top: 30%;
    left: 8%;
    font-size: 80px;
    color: rgba(255, 183, 197, 0.25);
    animation: float 6s ease-in-out infinite;
}

.page-header::after {
    content: '❀';
    position: absolute;
    bottom: 20%;
    right: 10%;
    font-size: 60px;
    color: rgba(255, 105, 180, 0.2);
    animation: float 8s ease-in-out infinite reverse;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 14px;
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.page-title {
    font-size: 44px;
    color: var(--color-text);
    margin-bottom: 14px;
}

.page-title span {
    color: var(--color-accent);
}

.page-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
}

/* ===========================
   分类筛选
   =========================== */
.filter-bar {
    display: flex;
    gap: 12px;
    padding: 24px 32px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: center;
}

.filter-label {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
    margin-right: 8px;
}

.filter-tag {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.filter-tag:hover {
    border-color: var(--color-primary-dark);
    color: var(--color-accent);
}

.filter-tag.active {
    background: var(--gradient-button);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-soft);
}

/* ===========================
   时间表布局
   =========================== */
.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 32px;
}

.schedule-day {
    margin-bottom: 36px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.schedule-day-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px dashed var(--color-border);
}

.schedule-day-badge {
    background: var(--gradient-button);
    color: var(--color-white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: var(--shadow-soft);
}

.schedule-day-badge strong {
    font-size: 20px;
    font-family: 'ZCOOL XiaoWei', serif;
}

.schedule-day-title {
    font-size: 22px;
    color: var(--color-text);
}

.schedule-day-count {
    font-size: 14px;
    color: var(--color-text-muted);
}

.schedule-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.schedule-item {
    display: flex;
    gap: 14px;
    background: var(--color-bg-soft);
    padding: 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.schedule-item:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.schedule-cover {
    width: 80px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.schedule-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-info {
    flex: 1;
    min-width: 0;
}

.schedule-time {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 6px;
}

.schedule-name {
    font-size: 15px;
    color: var(--color-text);
    margin-bottom: 6px;
    font-weight: 500;
}

.schedule-episode {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.schedule-brief {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===========================
   时间轴布局
   =========================== */
.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 32px;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: var(--gradient-pink);
    border-radius: 2px;
}

.timeline-day {
    display: flex;
    margin-bottom: 36px;
    position: relative;
}

.timeline-day-label {
    flex: 0 0 70px;
    text-align: right;
    padding-right: 24px;
    padding-top: 14px;
}

.timeline-day-label strong {
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 22px;
    color: var(--color-accent);
    display: block;
}

.timeline-day-label span {
    font-size: 12px;
    color: var(--color-text-muted);
}

.timeline-day::before {
    content: '';
    position: absolute;
    left: 94px;
    top: 20px;
    width: 16px;
    height: 16px;
    background: var(--color-white);
    border: 4px solid var(--color-primary-dark);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.15);
}

.timeline-day-content {
    flex: 1;
    margin-left: 40px;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
}

.timeline-anime-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.timeline-anime {
    display: flex;
    gap: 12px;
    background: var(--color-bg-soft);
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.timeline-anime:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.timeline-anime:hover .timeline-anime-name,
.timeline-anime:hover .timeline-anime-meta {
    color: var(--color-white);
}

.timeline-anime-cover {
    width: 56px;
    height: 72px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.timeline-anime-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-anime-info {
    flex: 1;
    min-width: 0;
}

.timeline-anime-time {
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 4px;
}

.timeline-anime:hover .timeline-anime-time {
    color: var(--color-white);
}

.timeline-anime-name {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.timeline-anime-meta {
    font-size: 11px;
    color: var(--color-text-muted);
}

/* ===========================
   排行榜标签切换
   =========================== */
.ranking-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ranking-tab {
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    color: var(--color-text-light);
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    font-weight: 500;
}

.ranking-tab:hover {
    border-color: var(--color-primary-dark);
    color: var(--color-accent);
}

.ranking-tab.active {
    background: var(--gradient-button);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-soft);
}

/* ===========================
   关于页样式
   =========================== */
.about-hero {
    padding: 140px 32px 60px;
    text-align: center;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '❀';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 100px;
    color: rgba(255, 183, 197, 0.25);
    animation: float 7s ease-in-out infinite;
}

.about-hero::after {
    content: '❀';
    position: absolute;
    bottom: 15%;
    right: 12%;
    font-size: 80px;
    color: rgba(255, 105, 180, 0.15);
    animation: float 9s ease-in-out infinite reverse;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.about-hero h1 span {
    color: var(--color-accent);
}

.about-hero p {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.about-section {
    padding: 60px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 12px;
    color: var(--color-text);
}

.about-section h2 span {
    color: var(--color-accent);
}

.section-divider {
    text-align: center;
    margin-bottom: 36px;
    color: var(--color-primary-dark);
    font-size: 18px;
    letter-spacing: 4px;
}

.about-text {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.9;
    text-align: justify;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.feature-card {
    background: var(--color-bg-card);
    padding: 36px 26px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* 团队成员 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 36px;
}

.team-member {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-name {
    font-size: 19px;
    color: var(--color-text);
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    color: var(--color-accent);
    margin-bottom: 10px;
    font-weight: 500;
}

.team-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ===========================
   联系表单
   =========================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 50px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--color-bg-card);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-card h3::before {
    content: '❀';
    color: var(--color-primary-dark);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--color-border);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-white);
    flex-shrink: 0;
    box-shadow: var(--shadow-soft);
}

.contact-info-text h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--color-text);
}

.contact-info-text p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--color-bg-card);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form h3::before {
    content: '❀';
    color: var(--color-primary-dark);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-dark);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.15);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-button);
    color: var(--color-white);
    border: none;
    padding: 15px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* 社区入口 */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.community-card {
    background: var(--color-bg-card);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.community-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.community-card h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--color-text);
}

.community-card p {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ===========================
   页脚
   =========================== */
.footer {
    background: var(--gradient-soft);
    border-top: 1px solid var(--color-border);
    padding: 60px 32px 24px;
    margin-top: 40px;
    position: relative;
}

.footer::before {
    content: '❀ ❀ ❀';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-primary-dark);
    font-size: 20px;
    letter-spacing: 8px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
    margin-top: 20px;
}

.footer-brand h3 {
    font-size: 26px;
    color: var(--color-accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand h3::before {
    content: '❀';
    color: var(--color-primary-dark);
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-accent);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.footer-social a:hover {
    background: var(--gradient-button);
    color: var(--color-white);
    transform: translateY(-4px);
}

.footer-col h4 {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--color-text-light);
}

.footer-col ul li a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--color-text-muted);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ===========================
   响应式
   =========================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-bg-card);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-card);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .search-box {
        display: none;
    }

    .hero {
        padding: 110px 20px 40px;
    }

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

    .hero-desc {
        font-size: 14px;
    }

    .content-section,
    .page-header,
    .filter-bar,
    .schedule-container,
    .timeline-container,
    .about-section,
    .contact-wrapper {
        padding-left: 18px;
        padding-right: 18px;
    }

    .page-title,
    .about-hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .anime-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .landscape-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-day-label {
        flex: 0 0 50px;
    }

    .timeline-day::before {
        left: 24px;
    }

    .timeline-day-content {
        margin-left: 30px;
    }

    .ranking-list {
        padding: 18px;
    }

    .schedule-day {
        padding: 20px;
    }

    body::before, body::after {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .logo {
        font-size: 22px;
    }

    .hero-title {
        font-size: 28px;
    }

    .anime-grid {
        grid-template-columns: 1fr;
    }

    .schedule-list,
    .timeline-anime-list {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        gap: 12px;
    }

    .ranking-cover {
        width: 56px;
        height: 76px;
    }
}
