* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b5cf6;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --dark-bg: #0f0f23;
    --card-bg: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --gradient-1: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    --gradient-3: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex: 1;
}

.nav-menu li a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    font-size: 0.95rem;
}

.nav-menu li a:hover {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.search-box {
    display: flex;
    gap: 0.5rem;
}

.search-box input {
    padding: 0.6rem 1.2rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    background: rgba(26, 26, 46, 0.8);
    color: var(--text-primary);
    border-radius: 25px;
    outline: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.search-box button {
    padding: 0.6rem 1.5rem;
    background: var(--gradient-1);
    border: none;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.search-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
}

.hero-section {
    margin-top: 80px;
    padding: 6rem 2rem;
    background: var(--gradient-3);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.content-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.media-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.media-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.card-image {
    position: relative;
    overflow: hidden;
    padding-top: 140%;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.media-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.quality-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    background: var(--gradient-2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.play-icon {
    font-size: 4rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.card-info {
    padding: 1.5rem;
}

.card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.horizontal-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--card-bg);
}

.horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: var(--card-bg);
    border-radius: 10px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

.scroll-content {
    display: flex;
    gap: 2rem;
    padding-bottom: 1rem;
}

.variety-card {
    min-width: 350px;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.variety-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.variety-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.variety-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.variety-info h3 {
    font-size: 1.2rem;
}

.variety-info span {
    padding: 0.4rem 1rem;
    background: var(--gradient-1);
    border-radius: 15px;
    font-size: 0.85rem;
}

.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.anime-item {
    text-align: center;
}

.anime-poster {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.anime-poster:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.anime-poster img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.anime-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.5rem 1.2rem;
    background: var(--gradient-2);
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.anime-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.anime-item p {
    color: var(--text-secondary);
}

.documentary-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.doc-item {
    display: flex;
    gap: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.doc-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
    transform: translateX(10px);
}

.doc-thumbnail {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
}

.doc-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.doc-item:hover .doc-thumbnail img {
    transform: scale(1.1);
}

.doc-content {
    flex: 1;
}

.doc-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.doc-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.doc-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
}

.vip-section {
    background: var(--gradient-3);
    border-radius: 30px;
    margin: 3rem 2rem;
}

.vip-container {
    padding: 4rem 2rem;
}

.vip-header {
    text-align: center;
    margin-bottom: 3rem;
}

.vip-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.vip-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
}

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

.latest-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.latest-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    border-left-width: 8px;
}

.update-time {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--gradient-2);
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.latest-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.latest-item p {
    color: var(--text-secondary);
}

.ranking-container {
    max-width: 900px;
    margin: 0 auto;
}

.ranking-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rank-item:hover {
    border-color: var(--primary-color);
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.rank-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    min-width: 50px;
    text-align: center;
}

.rank-number.top {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
}

.rank-info {
    flex: 1;
}

.rank-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.rank-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rank-trend {
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
}

.rank-trend.up {
    color: #10b981;
}

.rank-trend.down {
    color: #ef4444;
}

.rank-trend.same {
    color: var(--text-secondary);
}

.footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0a0a15 100%);
    border-top: 2px solid rgba(139, 92, 246, 0.3);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-features {
    list-style: none;
}

.footer-features li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-secondary);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .doc-item {
        flex-direction: column;
    }
    
    .doc-thumbnail {
        width: 100%;
    }
    
    .card-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
<!--ºÄÊ±1781695698.4876Ãë-->