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

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffeef8 0%, #fff0f5 50%, #f0f8ff 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-text .brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff69b4;
    display: block;
}

.logo-text .brand-subtitle {
    font-size: 0.8rem;
    color: #ff1493;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
}

.nav-link:hover,
.nav-link.active {
    color: #ff1493;
    transform: translateY(-2px);
}

.nav-link i {
    font-size: 1.2rem;
}

.nav-link span {
    font-size: 0.9rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 182, 193, 0.1);
    border-radius: 25px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 182, 193, 0.3);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
}

.search-input {
    background: transparent;
    border: none;
    color: #333;
    padding: 0.3rem 1rem;
    font-size: 0.9rem;
    width: 200px;
    outline: none;
}

.search-input::placeholder {
    color: #ff69b4;
}

.search-btn {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-btn {
    position: relative;
    background: none;
    border: none;
    color: #ff69b4;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-btn:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: scale(1.1);
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff1493;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 182, 193, 0.1);
    border: 1px solid rgba(255, 182, 193, 0.3);
}

.user-menu:hover {
    background: rgba(255, 105, 180, 0.2);
    border-color: #ff69b4;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff69b4;
}

.username {
    font-weight: 500;
    color: #ff1493;
}

/* 主要内容区域 */
.main-content {
    margin-top: 80px;
}

/* 首页轮播 */
.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.slide-background {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.8) 0%, rgba(255, 20, 147, 0.6) 100%);
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.95;
}

.slide-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.slide-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.slide-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-read {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

.btn-read:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.5);
}

.btn-favorite,
.btn-share {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(10px);
}

.btn-favorite:hover,
.btn-share:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.hero-indicators {
    display: flex;
    gap: 0.8rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* 甜蜜导航 */
.sweet-nav-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.sweet-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.sweet-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
}

.sweet-nav-item:hover {
    transform: translateY(-10px);
    border-color: #ff69b4;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
}

.nav-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.sweet-nav-item:hover .nav-icon {
    transform: scale(1.1);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.2); }
}

.nav-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.nav-count {
    font-size: 0.9rem;
    color: #ff69b4;
    font-weight: 500;
}

/* 区块标题 */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 4rem 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    color: #ff69b4;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* 甜蜜恋爱专区 */
.sweet-section {
    padding: 4rem 0;
    background: rgba(255, 240, 245, 0.8);
    backdrop-filter: blur(20px);
}

.sweet-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.sweet-tab {
    background: white;
    border: 2px solid #ffb6c1;
    color: #ff69b4;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sweet-tab.active,
.sweet-tab:hover {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.manga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.manga-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.2);
}

.manga-card:hover {
    transform: translateY(-10px);
    border-color: #ff69b4;
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.3);
}

.manga-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.manga-cover {
    position: relative;
    overflow: hidden;
}

.manga-cover img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.manga-card:hover .manga-cover img {
    transform: scale(1.05);
}

.manga-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 105, 180, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.manga-card:hover .manga-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    gap: 1rem;
}

.read-btn,
.info-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #ff1493;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-btn:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.5);
}

.info-btn:hover {
    background: #ff69b4;
    color: white;
    transform: scale(1.05);
}

.manga-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.manga-badge.sweet {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.manga-badge.healing {
    background: linear-gradient(135deg, #98fb98 0%, #90ee90 100%);
}

.manga-badge.complete {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
}

.manga-badge.new {
    background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
}

.manga-progress {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.progress-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
}

.manga-info {
    padding: 1.5rem;
}

.manga-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.manga-author {
    color: #ff69b4;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.manga-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.manga-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.manga-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
}

.manga-meta i {
    color: #ff69b4;
}

.manga-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid;
    transition: all 0.3s ease;
}

.tag.sweet {
    background: rgba(255, 105, 180, 0.1);
    color: #ff69b4;
    border-color: #ff69b4;
}

.tag.romance {
    background: rgba(255, 20, 147, 0.1);
    color: #ff1493;
    border-color: #ff1493;
}

.tag.school {
    background: rgba(30, 144, 255, 0.1);
    color: #1e90ff;
    border-color: #1e90ff;
}

.tag.healing {
    background: rgba(152, 251, 152, 0.1);
    color: #98fb98;
    border-color: #98fb98;
}

.tag.daily {
    background: rgba(255, 165, 0, 0.1);
    color: #ffa500;
    border-color: #ffa500;
}

.tag.warm {
    background: rgba(255, 218, 185, 0.1);
    color: #ffdab9;
    border-color: #ffdab9;
}

.tag.youth {
    background: rgba(135, 206, 250, 0.1);
    color: #87ceea;
    border-color: #87ceea;
}

.tag.star {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-color: #ffd700;
}

.tag.candy {
    background: rgba(255, 192, 203, 0.1);
    color: #ffc0cb;
    border-color: #ffc0cb;
}

.tag.dream {
    background: rgba(221, 160, 221, 0.1);
    color: #dda0dd;
    border-color: #dda0dd;
}

.tag:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.5);
}

/* 治愈系专区 */
.healing-section {
    padding: 4rem 0;
    background: rgba(240, 255, 240, 0.8);
    backdrop-filter: blur(20px);
}

.healing-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.healing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(152, 251, 152, 0.2);
}

.healing-card:hover {
    transform: translateY(-10px);
    border-color: #98fb98;
    box-shadow: 0 20px 50px rgba(152, 251, 152, 0.3);
}

.healing-cover {
    height: 200px;
    overflow: hidden;
}

.healing-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.healing-card:hover .healing-cover img {
    transform: scale(1.05);
}

.healing-info {
    padding: 1.5rem;
}

.healing-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.healing-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.healing-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.healing-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
}

.healing-stats i {
    color: #98fb98;
}

/* 校园青春专区 */
.school-section {
    padding: 4rem 0;
    background: rgba(240, 248, 255, 0.8);
    backdrop-filter: blur(20px);
}

.school-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.school-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-time {
    width: 80px;
    text-align: right;
    color: #1e90ff;
    font-weight: 500;
    padding-top: 1rem;
    flex-shrink: 0;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 94px;
    top: 1.5rem;
    width: 14px;
    height: 14px;
    background: #1e90ff;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #1e90ff;
}

.timeline-content {
    flex: 1;
}

.update-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(30, 144, 255, 0.1);
}

.update-card:hover {
    transform: translateY(-5px);
    border-color: #1e90ff;
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.2);
}

.update-cover {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.update-info {
    flex: 1;
}

.update-title {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.update-chapter {
    color: #1e90ff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.update-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.update-read-btn {
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.update-read-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
}

/* 甜蜜社区 */
.community-section {
    padding: 4rem 0;
    background: rgba(255, 248, 220, 0.8);
    backdrop-filter: blur(20px);
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #ff69b4;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.community-topics {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.2);
}

.topic-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

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

.topic-item:hover {
    background: rgba(255, 182, 193, 0.05);
    margin: 0 -1rem;
    padding: 1.5rem 1rem;
    border-radius: 10px;
}

.topic-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.topic-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #ff69b4;
}

.topic-content {
    flex: 1;
}

.topic-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.topic-preview {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.topic-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #999;
}

.topic-author {
    color: #ff69b4;
    font-weight: 500;
}

.topic-replies {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.topic-replies i {
    color: #ff69b4;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    min-height: 200px;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: block;
    padding: 0.3rem 0;
    border-radius: 5px;
    padding-left: 0.5rem;
}

.footer-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .manga-card.featured {
        grid-column: span 1;
        display: block;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .healing-showcase {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .search-container {
        width: 150px;
    }
    
    .search-input {
        width: 100px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .manga-grid {
        grid-template-columns: 1fr;
    }
    
    .sweet-nav-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .school-timeline::before {
        display: none;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-read,
    .btn-favorite,
    .btn-share {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .manga-card {
        margin: 0 10px;
    }
    
    .update-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        min-height: auto;
    }
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff1493 0%, #dc143c 100%);
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 105, 180, 0.3);
    border-top: 3px solid #ff69b4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}