* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

nav {
    background: #333;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-menu {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo span {
    color: #4CAF50;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #4CAF50;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/Hero.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 2rem;
    padding: 2rem 1rem;
}

.main-content {
    width: 100%;
}

.content_1 {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: solid 1px #4CAF50;
}

.content_1 h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    padding-bottom: 0.5rem;
}

.featured-image {
    margin: 1rem 0 2rem;
}

.featured-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #4CAF50;
}

.content-text {
    line-height: 1.6;
}

.highlight {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.platform-list {
    list-style: none;
    margin: 1rem 0;
}

.platform-list li {
    margin: 0.5rem 0;
    color: #555;
}

.platform-list i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

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

.post-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #4CAF50;
}

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

.post-content {
    padding: 1.5rem;
}

.post-category {
    background: #4CAF50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.post-content h2 {
    margin-bottom: 1rem;
    color: #333;
}

.post-meta {
    margin: 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.post-meta span {
    margin-right: 1rem;
}

.post-meta i {
    margin-right: 0.3rem;
    color: #4CAF50;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

.sidebar {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #4CAF50;
}

.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #4CAF50;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #f0f0f0;
}

footer {
    background: #333;
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: white;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: #4CAF50;
}

.blog-container, .about-container {
    padding: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-intro {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-intro img {
    width: 100%;
    border-radius: 8px;
}

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

.team-member {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #4CAF50;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #4CAF50;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn-submit {
    background: #4CAF50;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #45a049;
}

.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: solid 1px #4CAF50;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: 0.5rem;
}

.widget-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.widget-list a:hover {
    color: #4CAF50;
    background: #f5f5f5;
}

.widget-list a.active {
    color: white;
    background: #4CAF50;
}

.widget-list i {
    width: 20px;
    text-align: center;
    color: inherit;
}

.rating-bars {
    padding: 0.5rem 0;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.rating-bar span {
    color: #666;
    font-size: 0.9rem;
    min-width: 35px;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: #4CAF50;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.review-form {
    margin-top: 1rem;
}

.review-form p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input {
    padding: 0.8rem 1.2rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #4CAF50;
    outline: none;
    border: 1px solid #4CAF50;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(145deg, #4CAF50, #45a049);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #4CAF50;
}

.btn:hover {
    transform: translateY(-2px);
    border: 3px solid #4CAF50;
}

.theme-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.theme-toggle:hover {
    color: #4CAF50;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #4CAF50;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.2rem;
}
.about-content h1 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}
.about-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #4CAF50;
}
.about-intro img {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.about-text h2 {
    color: #4CAF50;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}
.about-text p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}
.team-member {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px);
    border: 1px solid #4CAF50;
}
.member-social {
    margin-top: 1rem;
}
.member-social a {
    color: #4CAF50;
    margin: 0 0.5rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.member-social a:hover {
    color: #388E3C;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}
.page-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}
.page-header h1 i {
    color: #4CAF50;
    animation: newsFlash 2s infinite;
}

.anime-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.filter-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 25px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid #4CAF50;
}
.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(145deg, #4CAF50, #45a049);
    color: white;
    transform: translateY(-2px);
    border: 1px solid #4CAF50;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-content {
    padding: 1.5rem;
}
.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
    margin: 1rem 0;
}
.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.news-meta i {
    color: #4CAF50;
}
.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: none;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.read-more-btn i {
    transition: transform 0.3s ease;
}
.read-more-btn:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}
.read-more-btn:hover i {
    transform: translateX(5px);
}
.era-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.era-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: white;
    color: #333;
    border-radius: 25px;
    cursor: pointer;
    border: 1px solid #4CAF50;
}
.era-btn:hover {
    background: #4CAF50;
    color: white;
}
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent,
        #4CAF50 10%,
        #4CAF50 90%,
        transparent
    );
    transform: translateX(-50%);
}
.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}
.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 2rem);
}
.timeline-item:nth-child(even) {
    padding-left: calc(50% + 2rem);
}
.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: solid 1px #4CAF50;
    position: relative;
    transition: all 0.3s ease;
}
.timeline-date {
    position: absolute;
    top: 0;
    width: auto;
    padding: 0.5rem 1.5rem;
    background: #4CAF50;
    color: white;
    border-radius: 20px;
    font-weight: bold;
}
.timeline-item:nth-child(odd) .timeline-date {
    right: calc(50% + 3rem);
}
.timeline-item:nth-child(even) .timeline-date {
    left: calc(50% + 3rem);
}
.timeline-dot {
    position: absolute;
    top: 1.5rem;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}
.timeline-image {
    margin: -2rem -2rem 1.5rem -2rem;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}
.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.timeline-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}
.timeline-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.fun-facts {
    background: linear-gradient(145deg, #f8f8f8, #ffffff);
    padding: 3rem;
    border-radius: 15px;
    margin: 4rem 0;
    border: solid 1px #4CAF50;
}
.facts-title {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.fact-card {
    padding: 1.5rem;
    border-radius: 10px;
    border: solid 1px #4CAF50;
    transition: all 0.3s ease;
}
.fact-icon {
    color: #4CAF50;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.anime-card {
    display: grid;
    grid-template-columns: 80px 300px 1fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #4CAF50;
    position: relative;
    overflow: hidden;
}
.rank-number {
    font-size: 3rem;
    font-weight: bold;
    color: #4CAF50;
    text-align: center;
    line-height: 1;
    position: relative;
}
.rank-number::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #4CAF50, transparent);
}
.anime-image {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}
.anime-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.anime-info {
    padding-right: 1rem;
}
.anime-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}
.anime-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}
.anime-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.anime-meta i {
    color: #4CAF50;
}
.anime-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.stars {
    color: #FFD700;
    display: flex;
    gap: 0.2rem;
}
.rating-number {
    font-weight: bold;
    color: #333;
}
.genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.genre-tag {
    padding: 0.3rem 1rem;
    background: #f5f5f5;
    color: #666;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.genre-tag:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}
.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(145deg, #4CAF50, #45a049);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.2);
}
.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}
.character-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}
.character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}
.character-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}
.character-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.character-card:hover .character-image img {
    transform: scale(1.1);
}
.character-info {
    padding: 1.5rem;
    position: relative;
}
.character-series {
    position: absolute;
    top: -1rem;
    right: 1rem;
    background: #4CAF50;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}
.character-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}
.character-role {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}
.character-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}
.stat-item i {
    color: #4CAF50;
}
.character-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.read-more-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: none;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.read-more-btn:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.character-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.character-modal.show {
    display: flex;
    opacity: 1;
}
.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.countdown-banner {
    background: linear-gradient(145deg, #4CAF50, #45a049);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}
.countdown-banner h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}
.countdown-item {
    text-align: center;
}
.countdown-number {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.countdown-label {
    font-size: 0.9rem;
    opacity: 0.9;
}
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .countdown {
        gap: 1rem;
    }
    .countdown-number {
        font-size: 1.5rem;
    }
    .timeline::before {
        left: 2rem;
    }
    .timeline-item {
        padding-left: 5rem !important;
        padding-right: 1rem !important;
    }
    .timeline-date {
        left: 5rem !important;
        right: auto !important;
        top: -2.5rem !important;
    }
    .timeline-dot {
        left: 2rem;
    }
    .anime-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .rank-number {
        font-size: 2.5rem;
    }
    .rank-number::after {
        display: none;
    }
    .anime-meta {
        justify-content: center;
    }
    .genres {
        justify-content: center;
    }
    .menu-toggle {
        display: block;
    }
    nav ul {
        display: none;
    }
    nav ul.show {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    nav ul.show li {
        margin: 0.5rem 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero {
        height: 50vh;
        padding: 1rem;
    }
    .container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    .main-content {
        width: 100%;
    }
    .content_1 {
        padding: 1rem;
    }
    .content_1 h2 {
        font-size: 1.5rem;
    }
    .featured-image img {
        height: 200px;
    }
    .posts-container {
        grid-template-columns: 1fr;
    }
    .post-card {
        margin-bottom: 1.5rem;
    }
    .post-card img {
        height: 150px;
    }
    .post-content h2 {
        font-size: 1.5rem;
    }
    .post-meta {
        font-size: 0.8rem;
    }
    .post-meta span {
        margin-right: 0.5rem;
    }
    .sidebar {
        padding: 1rem;
    }
    .sidebar-widget {
        padding: 1rem;
    }
    .sidebar-widget h3 {
        font-size: 1.1rem;
    }
    .blog-container, .about-container {
        padding: 1rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .about-intro {
        grid-template-columns: 1fr;
    }
    .about-intro img {
        width: 100%;
        height: auto;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-member {
        padding: 1rem;
    }
    .team-member img {
        width: 120px;
        height: 120px;
    }
    .contact-form {
        padding: 1rem;
    }
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    .btn-submit {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .anime-filters {
        flex-direction: column;
        align-items: center;
    }
    .filter-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card {
        margin-bottom: 1.5rem;
    }
    .news-card img {
        height: 150px;
    }
    .news-content {
        padding: 1rem;
    }
    .news-meta {
        font-size: 0.8rem;
    }
    .news-excerpt {
        -webkit-line-clamp: 2;
    }
    .read-more-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .era-nav {
        flex-direction: column;
        align-items: center;
    }
    .era-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
    .timeline-item {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    .timeline-date {
        left: 2rem !important;
        right: auto !important;
        top: -1.5rem !important;
    }
    .timeline-dot {
        left: 2rem;
    }
    .anime-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .rank-number {
        font-size: 2rem;
    }
    .rank-number::after {
        display: none;
    }
    .anime-meta {
        justify-content: center;
    }
    .genres {
        justify-content: center;
    }
    .widget-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .widget-list a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .widget-list i {
        width: 16px;
    }
    .rating-bars {
        padding: 0.5rem 0;
    }
    .rating-bar {
        margin-bottom: 0.5rem;
    }
    .rating-bar span {
        min-width: 30px;
    }
    .bar-container {
        height: 6px;
    }
    .bar {
        height: 100%;
        border-radius: 3px;
    }
    .review-form {
        margin-top: 1rem;
    }
    .review-form p {
        font-size: 0.8rem;
    }
    .form-group input {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    .form-group textarea {
        height: 120px;
    }
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    .theme-toggle {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .anime-card {
        grid-template-columns: 60px 250px 1fr;
        gap: 1.5rem;
    }
}