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

.bottom-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.category-section {
    background: #fff;
    border: 1px solid #e9ecef;
    padding: 25px;
}

.category-novels {
    margin-top: 15px;
}

.featured-novel {
    display: flex;
    padding: 15px;
    border: 1px solid #e9ecef;
    margin-bottom: 15px;
    min-height: 90px;
}

.featured-novel:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.featured-cover {
    width: 50px;
    height: 70px;
    background: #e9ecef;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #666;
    flex-shrink: 0;
    overflow: hidden;
}

.featured-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-info {
    flex: 1;
    min-width: 0;
}

.featured-title {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 3px;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.featured-author {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.featured-desc {
    color: #888;
    font-size: 11px;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

.simple-novel-list {
    margin-top: 10px;
}

.simple-novel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px dotted #e9ecef;
    font-size: 13px;
    min-height: 30px;
}

.simple-novel:last-child {
    border-bottom: none;
}

.simple-novel:hover {
    background: #f8f9fa;
}

.simple-title {
    color: #333;
    text-decoration: none;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    margin-right: 10px;
}

.simple-author {
    color: #666;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 80px;
    flex-shrink: 0;
}

.update-lists {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bottom-sections {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .update-lists {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}