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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

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

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

.logo-section-home h1 {
    margin: 0;
}

.logo-link-main {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    transition: opacity 0.3s;
}

.logo-link-main:hover {
    opacity: 0.9;
}

.menu-list-horizontal {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link-item,
.nav-link-active {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.nav-link-item:hover,
.nav-link-active {
    background-color: rgba(255,255,255,0.2);
}

.hero-banner-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 2rem;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text-block {
    animation: fadeInLeft 1s ease-out;
}

.hero-title-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-primary {
    display: inline-block;
    background-color: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-image-container {
    animation: fadeInRight 1s ease-out;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.content-container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading-primary {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2d3748;
}

.featured-section-home {
    padding: 5rem 0;
    background-color: white;
}

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

.anime-card-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.anime-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.card-image-wrapper {
    overflow: hidden;
    height: 200px;
}

.card-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.anime-card-item:hover .card-cover-image {
    transform: scale(1.1);
}

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

.card-title-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.card-description-short {
    color: #718096;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.read-more-link:hover {
    color: #764ba2;
}

.manga-spotlight-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

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

.manga-feature-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.manga-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.manga-feature-card:hover .manga-showcase-image {
    transform: scale(1.15);
}

.manga-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 2rem 1.5rem;
    transform: translateY(0);
    transition: transform 0.3s;
}

.manga-title-overlay {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.manga-genre-tag {
    font-size: 0.9rem;
    opacity: 0.9;
}

.latest-news-section {
    padding: 5rem 0;
    background-color: white;
}

.news-list-container {
    display: grid;
    gap: 2rem;
}

.news-item-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: transform 0.3s;
}

.news-item-card:hover {
    transform: translateX(8px);
}

.news-date-badge {
    display: inline-block;
    background-color: #667eea;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.news-title-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.news-excerpt-text {
    color: #718096;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.news-read-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.community-section-home {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.community-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-heading-large {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.community-description-para {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
}

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

.feature-item-text {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.feature-item-text::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.3rem;
}

.community-feature-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.site-footer-main {
    background-color: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-heading-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-description-text,
.footer-contact-info {
    color: #cbd5e0;
    line-height: 1.8;
}

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

.footer-link-item {
    color: #cbd5e0;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.footer-link-item:hover {
    color: white;
}

.footer-bottom-bar {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
}

.copyright-text {
    color: #cbd5e0;
}

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

.page-title-banner {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle-banner {
    font-size: 1.3rem;
    opacity: 0.95;
}

.anime-catalog-section {
    padding: 4rem 0;
}

.filter-bar-container {
    margin-bottom: 3rem;
}

.filter-heading-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.filter-buttons-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn-active,
.filter-btn-normal {
    padding: 0.7rem 1.5rem;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn-active {
    background: #667eea;
    color: white;
}

.filter-btn-normal:hover {
    background: #667eea;
    color: white;
}

.anime-detailed-grid {
    display: grid;
    gap: 2.5rem;
}

.anime-detail-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.detail-card-image {
    position: relative;
}

.detail-cover-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.rating-badge-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.detail-anime-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.anime-meta-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-tag-item {
    background: #edf2f7;
    color: #667eea;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.meta-season-text {
    color: #718096;
    font-size: 0.9rem;
    padding: 0.4rem 0;
}

.detail-description-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.anime-stats-row {
    display: flex;
    gap: 1.5rem;
    color: #718096;
}

.stat-item-text {
    font-size: 0.9rem;
}

.manga-showcase-section {
    padding: 4rem 0;
}

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

.intro-heading-text {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.intro-description-para {
    max-width: 800px;
    margin: 0 auto;
    color: #718096;
    line-height: 1.8;
}

.manga-collection-grid {
    display: grid;
    gap: 2.5rem;
}

.manga-showcase-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.manga-cover-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.manga-card-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.manga-author-text {
    color: #718096;
    margin-bottom: 1rem;
}

.manga-tags-row {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag-badge-item {
    background: #edf2f7;
    color: #667eea;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.manga-synopsis-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.manga-stats-info {
    display: flex;
    gap: 2rem;
    color: #718096;
}

.manga-genres-section {
    padding: 4rem 0;
    background: #f7fafc;
}

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

.genre-category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.genre-category-card:hover {
    transform: translateY(-5px);
}

.genre-icon-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.genre-title-text {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.genre-count-text {
    color: #718096;
}

.characters-gallery-section {
    padding: 4rem 0;
}

.gallery-intro-block {
    text-align: center;
    margin-bottom: 3rem;
}

.characters-display-grid {
    display: grid;
    gap: 2.5rem;
}

.character-profile-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.character-portrait-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
}

.character-name-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.character-series-text {
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.character-traits-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.trait-tag-label {
    background: #edf2f7;
    color: #667eea;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.character-bio-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.character-stats-block {
    display: grid;
    gap: 0.8rem;
}

.stat-item-row {
    display: flex;
    color: #718096;
}

.stat-name-label {
    font-weight: 600;
    min-width: 80px;
}

.character-types-section {
    padding: 4rem 0;
    background: #f7fafc;
}

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

.type-category-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.type-title-heading {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.type-description-para {
    color: #718096;
    line-height: 1.8;
}

.news-content-section {
    padding: 4rem 0;
}

.news-main-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.news-featured-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.featured-image-full {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-news-content {
    padding: 2rem;
}

.news-category-tag {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.featured-news-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.news-meta-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #718096;
    font-size: 0.9rem;
}

.featured-news-excerpt,
.featured-news-body {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.news-articles-list {
    display: grid;
    gap: 2rem;
}

.news-standard-article {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.standard-image-thumb {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.standard-news-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.standard-news-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.sidebar-widget-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.widget-title-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.trending-topics-list {
    list-style: none;
}

.topic-item-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #edf2f7;
}

.topic-rank-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
}

.topic-link-text {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s;
}

.topic-link-text:hover {
    color: #667eea;
}

.recommended-item-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.recommended-thumb-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.recommended-title-small {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #2d3748;
}

.recommended-desc-mini {
    color: #718096;
    font-size: 0.85rem;
}

.tags-cloud-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag-cloud-link {
    background: #edf2f7;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tag-cloud-link:hover {
    background: #667eea;
    color: white;
}

.about-intro-section {
    padding: 4rem 0;
    background: white;
}

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

.about-section-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

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

.about-feature-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mission-vision-section {
    padding: 4rem 0;
    background: #f7fafc;
}

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

.mission-card-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission-icon-wrapper {
    margin-bottom: 1.5rem;
}

.mission-icon-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.mission-title-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.mission-description-text {
    color: #718096;
    line-height: 1.8;
}

.services-section-about {
    padding: 4rem 0;
    background: white;
}

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

.service-item-card {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #667eea;
}

.service-title-heading {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.service-description-text {
    color: #718096;
    line-height: 1.8;
}

.team-section-about {
    padding: 4rem 0;
    background: #f7fafc;
}

.team-intro-para {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #718096;
    line-height: 1.8;
}

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

.stat-box-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-number-large {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label-text {
    color: #718096;
    font-size: 1.1rem;
}

.contact-section-about {
    padding: 4rem 0;
    background: white;
}

.contact-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-heading-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.contact-intro-text {
    color: #718096;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details-list {
    display: grid;
    gap: 1rem;
}

.contact-item-row {
    color: #4a5568;
    font-size: 1.05rem;
}

.contact-label-bold {
    color: #2d3748;
}

.contact-visual-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.partners-section-about {
    padding: 4rem 0;
    background: #f7fafc;
}

.partners-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #718096;
    line-height: 1.8;
}

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

.partner-logo-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.partner-logo-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo-box:hover .partner-logo-img {
    opacity: 1;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 968px) {
    .hero-content-wrapper,
    .community-content-wrapper,
    .about-content-wrapper,
    .contact-content-layout {
        grid-template-columns: 1fr;
    }

    .anime-detail-card,
    .manga-showcase-card,
    .character-profile-card,
    .news-standard-article {
        grid-template-columns: 1fr;
    }

    .news-main-layout {
        grid-template-columns: 1fr;
    }

    .menu-list-horizontal {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .page-title-banner {
        font-size: 2rem;
    }
}