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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.anime-home-body-unique-2025,
.anime-hotpage-body-layout-2025,
.anime-manga-page-body-style-2025,
.anime-ranking-page-body-unique-2025,
.anime-category-page-body-layout-2025,
.anime-about-page-body-style-2025 {
    min-height: 100vh;
}

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

.anime-navigation-bar-primary-2025 {
    padding: 0;
}

.anime-nav-wrapper-content-2025 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.anime-logo-section-brand-2025 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.anime-logo-link-home-2025 {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.anime-logo-image-display-2025 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}

.anime-site-title-main-2025 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

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

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

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

.anime-nav-link-active-2025 {
    background: rgba(255,255,255,0.2);
    font-weight: 600;
}

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

.anime-hero-banner-section-2025 {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.anime-hero-content-wrapper-2025 {
    position: relative;
    height: 100%;
}

.anime-hero-background-image-2025 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.anime-hero-text-overlay-2025 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
}

.anime-hero-title-large-2025 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.anime-hero-description-text-2025 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.anime-hero-cta-button-2025 {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.anime-hero-cta-button-2025:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.anime-container-wrapper-main-2025 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.anime-section-title-header-2025 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #2d3748;
    position: relative;
    padding-left: 1rem;
}

.anime-section-title-header-2025::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.anime-grid-layout-cards-2025 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.anime-card-item-single-2025 {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.anime-card-item-single-2025:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.anime-card-image-cover-2025 {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.anime-card-title-name-2025 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.anime-card-description-summary-2025 {
    font-size: 0.95rem;
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.anime-card-tag-label-2025 {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
}

.anime-featured-content-section-2025,
.anime-latest-updates-section-2025,
.anime-manga-showcase-section-2025,
.anime-category-browse-section-2025 {
    background: rgba(255,255,255,0.6);
    margin: 2rem 0;
    border-radius: 20px;
}

.anime-list-layout-items-2025 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.anime-list-item-row-2025 {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.anime-list-item-row-2025:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.anime-list-thumbnail-small-2025 {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.anime-list-info-details-2025 {
    flex: 1;
}

.anime-list-title-text-2025 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.anime-list-episode-number-2025 {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.anime-list-update-time-2025 {
    color: #a0aec0;
    font-size: 0.9rem;
}

.anime-manga-grid-layout-2025 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.anime-manga-card-item-2025 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.anime-manga-card-item-2025:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.anime-manga-cover-image-2025 {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.anime-manga-title-name-2025 {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.anime-manga-chapter-info-2025 {
    padding: 0 1rem 1rem;
    color: #718096;
    font-size: 0.9rem;
}

.anime-category-tags-wrapper-2025 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.anime-category-tag-button-2025 {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.anime-category-tag-button-2025:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

.anime-footer-container-main-2025 {
    background: linear-gradient(90deg, #2d3748 0%, #1a202c 100%);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.anime-footer-content-wrapper-2025 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.anime-footer-title-heading-2025 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.anime-footer-title-heading-2025 h1 {
    margin: 0;
    font-size: 1.5rem;
}

.anime-footer-title-heading-2025 a {
    color: #fff;
    text-decoration: none;
}

.anime-footer-description-text-2025 {
    color: #cbd5e0;
    line-height: 1.8;
}

.anime-footer-subtitle-text-2025 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.anime-footer-link-list-2025 {
    list-style: none;
}

.anime-footer-link-list-2025 li {
    margin-bottom: 0.8rem;
}

.anime-footer-link-item-2025 {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.anime-footer-link-item-2025:hover {
    color: #667eea;
}

.anime-footer-copyright-bar-2025 {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.anime-footer-copyright-text-2025 {
    color: #a0aec0;
    font-size: 0.9rem;
}

.anime-page-header-banner-2025 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.anime-page-main-title-2025 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.anime-page-subtitle-desc-2025 {
    font-size: 1.2rem;
    opacity: 0.9;
}

.anime-filter-bar-controls-2025 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.anime-filter-button-active-2025,
.anime-filter-button-normal-2025 {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.anime-filter-button-active-2025 {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 600;
}

.anime-filter-button-normal-2025 {
    background: #fff;
    color: #2d3748;
}

.anime-filter-button-normal-2025:hover {
    background: #f7fafc;
    transform: translateY(-2px);
}

.anime-hot-grid-layout-items-2025 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.anime-hot-card-wrapper-2025 {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.anime-hot-card-wrapper-2025:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.anime-hot-card-image-2025 {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.anime-hot-card-info-box-2025 {
    padding: 1.5rem;
}

.anime-hot-card-title-2025 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2d3748;
}

.anime-hot-card-meta-data-2025 {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.anime-hot-rating-score-2025 {
    color: #f59e0b;
    font-weight: 600;
}

.anime-hot-view-count-2025 {
    color: #718096;
}

.anime-hot-card-synopsis-2025 {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.anime-hot-card-tags-row-2025 {
    display: flex;
    gap: 0.8rem;
}

.anime-hot-tag-item-2025 {
    padding: 0.3rem 1rem;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 15px;
    font-size: 0.85rem;
}

.anime-manga-update-list-wrapper-2025 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.anime-manga-update-item-card-2025 {
    display: flex;
    gap: 2rem;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.anime-manga-update-item-card-2025:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.anime-manga-update-cover-2025 {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
}

.anime-manga-update-info-box-2025 {
    flex: 1;
}

.anime-manga-update-title-2025 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.anime-manga-update-chapter-2025 {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.anime-manga-update-time-2025 {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.anime-manga-update-desc-2025 {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.anime-manga-update-tags-2025 {
    display: flex;
    gap: 0.8rem;
}

.anime-manga-tag-badge-2025 {
    padding: 0.3rem 1rem;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 15px;
    font-size: 0.85rem;
}

.anime-ranking-tabs-bar-2025 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.anime-ranking-tab-active-2025,
.anime-ranking-tab-normal-2025 {
    padding: 1rem 2rem;
    border: none;
    background: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.anime-ranking-tab-active-2025 {
    color: #667eea;
    font-weight: 600;
}

.anime-ranking-tab-active-2025::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.anime-ranking-tab-normal-2025 {
    color: #718096;
}

.anime-ranking-tab-normal-2025:hover {
    color: #2d3748;
}

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

.anime-ranking-item-wrapper-top3-2025,
.anime-ranking-item-wrapper-normal-2025 {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.anime-ranking-item-wrapper-top3-2025:hover,
.anime-ranking-item-wrapper-normal-2025:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
}

.anime-ranking-number-badge-gold-2025,
.anime-ranking-number-badge-silver-2025,
.anime-ranking-number-badge-bronze-2025,
.anime-ranking-number-badge-normal-2025 {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.anime-ranking-number-badge-gold-2025 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.anime-ranking-number-badge-silver-2025 {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
}

.anime-ranking-number-badge-bronze-2025 {
    background: linear-gradient(135deg, #cd7f32 0%, #f4a460 100%);
}

.anime-ranking-number-badge-normal-2025 {
    background: linear-gradient(135deg, #718096 0%, #a0aec0 100%);
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.anime-ranking-item-image-2025 {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.anime-ranking-item-info-2025 {
    flex: 1;
}

.anime-ranking-item-title-2025 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.anime-ranking-item-stats-2025 {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.anime-ranking-score-value-2025 {
    color: #f59e0b;
    font-weight: 600;
}

.anime-ranking-views-count-2025 {
    color: #718096;
}

.anime-ranking-item-description-2025 {
    color: #4a5568;
    line-height: 1.6;
}

.anime-ranking-item-image-small-2025 {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
}

.anime-ranking-item-info-compact-2025 {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.anime-ranking-item-title-small-2025 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
}

.anime-ranking-score-small-2025 {
    color: #f59e0b;
    font-weight: 600;
}

.anime-ranking-views-small-2025 {
    color: #718096;
}

.anime-category-grid-container-2025 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.anime-category-card-large-2025 {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.anime-category-card-large-2025:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.anime-category-card-bg-image-2025 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.anime-category-card-overlay-2025 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.anime-category-card-title-2025 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.anime-category-card-count-2025 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.anime-category-card-desc-2025 {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
}

.anime-category-popular-section-2025 {
    background: rgba(255,255,255,0.7);
    padding: 2rem;
    border-radius: 15px;
}

.anime-category-section-title-2025 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.anime-category-recommend-grid-2025 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.anime-category-recommend-card-2025 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.anime-category-recommend-card-2025:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.anime-category-recommend-img-2025 {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.anime-category-recommend-title-2025 {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.anime-category-recommend-tag-2025 {
    display: inline-block;
    margin: 0 1rem 1rem;
    padding: 0.3rem 1rem;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 15px;
    font-size: 0.85rem;
}

.anime-about-intro-block-2025 {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.anime-about-intro-image-2025 {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.anime-about-intro-text-box-2025 {
    flex: 1;
}

.anime-about-intro-title-2025 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.anime-about-intro-paragraph-2025 {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.anime-about-features-section-2025,
.anime-about-values-section-2025,
.anime-about-contact-section-2025 {
    background: rgba(255,255,255,0.8);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.anime-about-section-title-2025 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #2d3748;
    text-align: center;
}

.anime-about-features-grid-2025 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.anime-about-feature-card-2025 {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.anime-about-feature-card-2025:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.anime-about-feature-icon-2025 {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.anime-about-feature-title-2025 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.anime-about-feature-desc-2025 {
    color: #718096;
    line-height: 1.6;
}

.anime-about-values-content-2025 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.anime-about-value-item-2025 {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.anime-about-value-heading-2025 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #667eea;
}

.anime-about-value-text-2025 {
    color: #4a5568;
    line-height: 1.8;
}

.anime-about-contact-content-2025 {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.anime-about-contact-image-2025 {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.anime-about-contact-info-box-2025 {
    flex: 1;
}

.anime-about-contact-text-2025 {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.anime-about-contact-item-2025 {
    margin-bottom: 1rem;
}

.anime-about-contact-label-2025 {
    color: #2d3748;
    font-weight: 600;
}

.anime-about-contact-value-2025 {
    color: #718096;
}

@media (max-width: 768px) {
    .anime-nav-wrapper-content-2025 {
        flex-direction: column;
        gap: 1rem;
    }

    .anime-menu-list-items-2025 {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .anime-footer-content-wrapper-2025 {
        grid-template-columns: 1fr;
    }

    .anime-about-intro-block-2025,
    .anime-about-contact-content-2025 {
        flex-direction: column;
    }

    .anime-about-intro-image-2025,
    .anime-about-contact-image-2025 {
        width: 100%;
    }
}