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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.header {
    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;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    display: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,0.2);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    background: rgba(255,255,255,0.9);
    border-radius: 25px;
    overflow: hidden;
}

.search-box input {
    border: none;
    padding: 10px 20px;
    outline: none;
    width: 250px;
}

.search-box button {
    background: transparent;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    color: #667eea;
}

.login-btn {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 25px;
    transition: all 0.3s;
}

.login-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Alert Banner */
.alert-banner {
    background: #ff6b6b;
    color: #fff;
    padding: 12px 0;
    text-align: center;
}

.alert-banner strong {
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 30px;
}

.hero-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

/* About Section */
.about-section {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-section h2 {
    color: #667eea;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.about-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

/* Features Section */
.features-section {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.features-section h2 {
    color: #667eea;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.feature-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.feature-item h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item h3 i {
    color: #667eea;
}

.feature-item p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.feature-item ul {
    list-style: none;
    padding-left: 0;
}

.feature-item ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.feature-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Categories Section */
.categories-section {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.categories-section h2 {
    color: #667eea;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

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

.category-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.category-card i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.faq-section h2 {
    color: #667eea;
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

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

.faq-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.faq-item h3 {
    color: #667eea;
    font-size: 16px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    font-size: 14px;
}

/* Content Image */
.content-image {
    margin: 30px 0;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Main Content */
.main-content {
    padding: 30px 0;
}

.main-content .container {
    display: flex;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    width: 300px;
    flex-shrink: 0;
}

.widget {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.widget-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
    color: #667eea;
}

.featured-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.featured-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.featured-item img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.featured-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.featured-info h4 a {
    color: #333;
    text-decoration: none;
}

.featured-info h4 a:hover {
    color: #667eea;
}

.chapter-link a {
    color: #667eea;
    text-decoration: none;
    font-size: 13px;
}

.time {
    color: #999;
    font-size: 12px;
}

/* Rank List */
.rank-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
}

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

.rank-name {
    flex: 1;
    font-weight: 600;
}

.rank-level {
    color: #667eea;
    font-size: 12px;
}

/* Content Area */
.content-area {
    flex: 1;
}

/* Comics Grid */
.comics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.comic-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.comic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.comic-cover {
    position: relative;
    overflow: hidden;
}

.comic-cover img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s;
}

.comic-item:hover .comic-cover img {
    transform: scale(1.1);
}

.hot-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
}

.comic-info {
    padding: 15px;
}

.comic-title {
    font-size: 15px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.comic-title a {
    color: #333;
    text-decoration: none;
}

.comic-title a:hover {
    color: #667eea;
}

.comic-chapters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.comic-chapters a {
    color: #667eea;
    text-decoration: none;
    font-size: 13px;
}

.comic-chapters .time {
    font-size: 12px;
}

.comic-stats {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.comic-stats i {
    margin-right: 5px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.page-link {
    padding: 8px 15px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-link:hover,
.page-link.active {
    background: #667eea;
    color: #fff;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-about h3 {
    margin-bottom: 15px;
    color: #667eea;
}

.footer-about p {
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    color: #667eea;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-social {
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #667eea;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #764ba2;
    transform: scale(1.1);
}

.website-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: #667eea;
    color: #fff;
}

.btn-primary:hover {
    background: #764ba2;
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .main-content .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .comics-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav ul {
        justify-content: space-around;
        gap: 10px;
    }
    
    .search-box input {
        width: 150px;
    }
    
    .comics-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .comics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Toplist Styles */
.toplist-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.tab-btn {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.toplist-grid {
    display: grid;
    gap: 2rem;
}

.toplist-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.toplist-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.rank-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    z-index: 1;
}

.rank-badge.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.rank-badge.silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
}

.toplist-cover {
    position: relative;
    flex-shrink: 0;
}

.toplist-cover img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.toplist-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
}

.toplist-info h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.toplist-info h3 a:hover {
    color: #667eea;
}

.toplist-meta {
    display: flex;
    gap: 1.5rem;
    margin: 0.5rem 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.toplist-genres {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
}

.toplist-desc {
    color: #7f8c8d;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Collection Styles */
.collection-section {
    margin: 3rem 0;
}

.collection-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.collection-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.collection-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

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

.collection-card p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.country-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    text-align: center;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.country-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.country-card h3 {
    margin-bottom: 0.5rem;
}

.country-card p {
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.view-link {
    color: #667eea;
    font-weight: 600;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.status-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.status-card.ongoing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.status-card.completed {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.status-card.paused {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.status-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.status-card h3 {
    margin-bottom: 0.5rem;
}

.status-card .count {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
}

.quick-links-section {
    margin: 3rem 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.quick-link-item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
}

.quick-link-item i {
    font-size: 1.5rem;
}

/* Review Styles */
.featured-review {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.review-cover {
    position: relative;
    flex-shrink: 0;
}

.review-cover img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.review-content h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.review-rating {
    margin: 1rem 0;
    color: #FFD700;
}

.rating-number {
    margin-left: 0.5rem;
    color: #2c3e50;
    font-weight: bold;
}

.review-meta {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.review-excerpt {
    line-height: 1.8;
    color: #555;
    margin: 1.5rem 0;
}

.read-more-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.review-list {
    margin: 3rem 0;
}

.review-list h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.review-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transform: translateY(-3px);
}

.review-item-cover img {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.review-item-content {
    flex: 1;
}

.review-item-content h3 {
    margin-bottom: 0.5rem;
}

.review-item-content h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.review-item-content h3 a:hover {
    color: #667eea;
}

.review-item-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 1rem 0;
}

.review-item-meta {
    display: flex;
    gap: 1.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.top-reviewed-section {
    margin: 3rem 0;
}

.top-reviewed-section h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.top-reviewed-grid {
    display: grid;
    gap: 1.5rem;
}

.top-reviewed-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.top-reviewed-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.top-reviewed-item .rank {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    width: 50px;
    text-align: center;
}

.top-reviewed-item img {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.top-reviewed-item .info {
    flex: 1;
}

.top-reviewed-item .info h4 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.top-reviewed-item .stars {
    color: #FFD700;
    margin: 0.5rem 0;
}

.top-reviewed-item .info p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Additional Responsive */
@media (max-width: 768px) {
    .featured-review,
    .review-item,
    .toplist-item {
        flex-direction: column;
    }

    .review-cover img,
    .toplist-cover img {
        width: 100%;
        height: auto;
    }

    .toplist-tabs {
        flex-direction: column;
    }

    .tab-btn {
        min-width: 100%;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}