* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部样式 */
        header {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            color: #333;
            padding: 20px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 32px;
            font-weight: bold;
            text-decoration: none;
            color: #667eea;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo i {
            margin-right: 12px;
            font-size: 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .search-box {
            position: relative;
            flex: 1;
            max-width: 600px;
        }
        
        .search-box input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 30px;
            outline: none;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }
        
        .search-box input:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }
        
        .search-box button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .search-box button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        
        .user-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .user-info a {
            color: #667eea;
            text-decoration: none;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: 25px;
            background: #f8f9fa;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .user-info a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }
        
        /* 导航样式 - 居中显示 */
        nav {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 90px;
            z-index: 999;
        }
        
        .nav-content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 5px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }
        
        .nav-menu li a {
            display: block;
            padding: 18px 30px;
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
        }
        
        .nav-menu li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .nav-menu li a:hover::before {
            left: 0;
        }
        
        .nav-menu li a:hover {
            color: white;
            transform: translateY(-2px);
        }
        
        .nav-menu li.active a {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }
        
        /* 移动端菜单按钮 */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            font-size: 28px;
            color: white;
            cursor: pointer;
            padding: 12px 18px;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }
        
        /* Banner样式 */
        .banner {
            background: linear-gradient(rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)), url('https://picsum.photos/id/1040/1400/500') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 30px 0;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        
        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
            animation: shimmer 4s infinite;
        }
        
        @keyframes shimmer {
            0%, 100% { opacity: 0.1; }
            50% { opacity: 0.2; }
        }
        
        .banner h1 {
            font-size: 48px;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease;
            position: relative;
            z-index: 1;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        
        .banner p {
            font-size: 22px;
            margin-bottom: 35px;
            animation: fadeInUp 1s ease 0.3s both;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .banner .btn {
            display: inline-block;
            padding: 18px 50px;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            text-decoration: none;
            border-radius: 35px;
            font-weight: bold;
            font-size: 20px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.6s both;
            position: relative;
            z-index: 1;
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }
        
        .banner .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.5);
        }
        
        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 主要内容区 */
        .main-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }
        
        /* 分类区域 */
        .category-section {
            margin-bottom: 50px;
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #667eea;
        }
        
        .section-title {
            font-size: 32px;
            color: #333;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .section-title i {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-more {
            color: #667eea;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 10px 25px;
            border-radius: 25px;
            border: 2px solid #667eea;
        }
        
        .section-more:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: translateY(-2px);
        }
        
        /* 漫画网格 */
        .manga-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 25px;
        }
        
        .manga-item {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border: 2px solid #e9ecef;
        }
        
        .manga-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
            border-color: #667eea;
        }
        
        .manga-cover {
            width: 100%;
            height: 300px;
            object-fit: cover;
            position: relative;
        }
        
        .manga-cover::after {
            content: '\f02d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 60px;
            color: rgba(255,255,255,0.9);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .manga-item:hover .manga-cover::after {
            opacity: 1;
        }
        
        .manga-info {
            padding: 20px;
        }
        
        .manga-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 12px;
            color: #333;
            text-decoration: none;
            display: block;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        
        .manga-title:hover {
            color: #667eea;
        }
        
        .manga-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: #666;
            margin-top: 10px;
        }
        
        .manga-status {
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .manga-status.ongoing {
            background: #e3f2fd;
            color: #1976d2;
        }
        
        .manga-status.completed {
            background: #d4edda;
            color: #155724;
        }
        
        .manga-rating {
            color: #ffd700;
            font-weight: 600;
        }
        
        /* 页脚样式 */
        footer {
            background: #1a1a2e;
            color: white;
            padding: 60px 0 30px 0;
            margin-top: 50px;
            border-top: 4px solid #667eea;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            color: white;
            font-size: 20px;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 24px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }
        
        .footer-section p {
            line-height: 1.9;
            color: #bdc3c7;
            font-size: 15px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: #667eea;
            transform: translateX(5px);
        }
        
        .footer-links a i {
            font-size: 14px;
        }
        
        .social-links {
            display: flex;
            gap: 18px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.2);
            font-size: 22px;
        }
        
        .social-links a:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateY(-5px) scale(1.1);
            border-color: transparent;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bdc3c7;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .manga-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        
        @media (max-width: 992px) {
            .container {
                padding: 0 15px;
            }
            
            .manga-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .search-box {
                max-width: 100%;
                width: 100%;
            }
            
            .nav-content {
                flex-direction: column;
            }
            
            .nav-menu {
                flex-direction: column;
                width: 100%;
                text-align: center;
                display: none;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .banner h1 {
                font-size: 36px;
            }
            
            .banner p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .manga-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 20px;
            }
            
            .manga-cover {
                height: 250px;
            }
        }
        
        @media (max-width: 576px) {
            .banner {
                padding: 80px 0;
            }
            
            .banner h1 {
                font-size: 28px;
            }
            
            .main-content {
                padding: 25px;
            }
            
            .section-title {
                font-size: 22px;
            }
            
            .manga-grid {
                grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            }
            
            .manga-cover {
                height: 220px;
            }
            
            .manga-info {
                padding: 15px;
            }
            
            .manga-title {
                font-size: 16px;
            }
        }