* {
    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;
    overflow-x: hidden;
}

.anime-home-body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.anime-main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.anime-navigation-bar {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.anime-logo-container {
    flex-shrink: 0;
}

.anime-brand-link {
    text-decoration: none;
}

.anime-site-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.anime-site-title a {
    color: #fff;
    text-decoration: none;
}

.anime-menu-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.anime-menu-item {
    position: relative;
}

.anime-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.anime-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.anime-hero-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.anime-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/wwe202501.jpg') center/cover;
    opacity: 0.3;
    animation: heroZoom 20s ease-in-out infinite;
}

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

.anime-hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.anime-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.anime-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anime-hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.3s backwards;
}

.anime-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.anime-btn-primary,
.anime-btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.anime-btn-primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.anime-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}

.anime-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.anime-btn-secondary:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.anime-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.anime-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2d3436;
    position: relative;
}

.anime-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

.anime-section-desc {
    text-align: center;
    font-size: 1.1rem;
    color: #636e72;
    margin-bottom: 3rem;
}

.anime-latest-section {
    background: #fff;
}

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

.anime-card-wrapper {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.anime-card-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.anime-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.anime-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.anime-card-wrapper:hover .anime-thumbnail {
    transform: scale(1.1);
}

.anime-episode-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.anime-card-content {
    padding: 1.5rem;
}

.anime-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1rem;
}

.anime-card-text {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.anime-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.anime-tag {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2d3436;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.anime-rating {
    color: #fdcb6e;
    font-weight: 700;
    font-size: 1rem;
}

.anime-popular-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

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

.anime-rank-item {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.anime-rank-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.anime-rank-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
}

.anime-rank-thumb {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.anime-rank-info {
    flex: 1;
}

.anime-rank-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 0.8rem;
}

.anime-rank-desc {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.anime-rank-stats {
    display: flex;
    gap: 2rem;
    color: #b2bec3;
    font-weight: 600;
}

.anime-gallery-section {
    background: #fff;
}

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

.anime-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.anime-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.anime-gallery-item:hover .anime-gallery-img {
    transform: scale(1.15);
}

.anime-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.anime-gallery-item:hover .anime-gallery-overlay {
    transform: translateY(0);
}

.anime-character-name {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.anime-character-desc {
    color: #dfe6e9;
    font-size: 1rem;
}

.anime-news-section {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

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

.anime-news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.anime-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.anime-news-content {
    padding: 1.8rem;
}

.anime-news-date {
    color: #b2bec3;
    font-size: 0.9rem;
    font-weight: 600;
}

.anime-news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0.8rem 0;
    line-height: 1.4;
}

.anime-news-excerpt {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.anime-news-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.anime-news-link:hover {
    color: #764ba2;
}

.anime-community-section {
    background: #fff;
}

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

.anime-feature-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.anime-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.anime-feature-icon {
    margin-bottom: 1.5rem;
}

.anime-feature-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.anime-feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1rem;
}

.anime-feature-text {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.anime-feature-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.anime-feature-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.anime-about-section {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.anime-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.anime-about-text {
    color: #2d3436;
}

.anime-about-paragraph {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.anime-stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.anime-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.anime-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.anime-stat-label {
    font-size: 1rem;
    color: #2d3436;
    font-weight: 600;
    margin-top: 0.5rem;
}

.anime-about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

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

.anime-footer {
    background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
    color: #dfe6e9;
    padding: 3rem 0 1rem;
}

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

.anime-footer-col {
    display: flex;
    flex-direction: column;
}

.anime-footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.anime-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.anime-footer-link {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.anime-footer-link:hover {
    color: #fff;
}

.anime-footer-desc {
    color: #b2bec3;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.anime-social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.anime-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

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

.anime-copyright {
    color: #b2bec3;
    font-size: 0.9rem;
}

.anime-footer-decoration {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .anime-menu-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .anime-hero-title {
        font-size: 2rem;
    }

    .anime-hero-subtitle {
        font-size: 1.2rem;
    }

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

    .anime-grid-container,
    .anime-gallery-grid,
    .anime-news-grid,
    .anime-community-features {
        grid-template-columns: 1fr;
    }

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

    .anime-rank-item {
        flex-direction: column;
        text-align: center;
    }

    .anime-stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}